Thanks a bunch Steven! I've updated the donor list accordingly. Let me know if you want me to change the listing in any way.
1,501 2005-09-21 20:47
Re: Donation (Its a bug... but not actually on PunBB) (8 replies, posted in PunBB 1.2 bug reports)
1,502 2005-09-21 15:16
Re: Donation (Its a bug... but not actually on PunBB) (8 replies, posted in PunBB 1.2 bug reports)
It works for me. Try again. I think it was a temporary problem.
1,503 2005-09-21 09:22
Re: Calendar Mod 1.2.7 (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Actually, it should be at punres.org or in the mod's topic here at punbb.org.
1,505 2005-09-20 20:15
Re: Show post title instead of Time. (7 replies, posted in PunBB 1.2 modifications, plugins and integrations)
1. Are you talking about index.php or viewforum.php?
2. Are you talking about the title of the last replied to topic?
1,506 2005-09-20 20:09
Re: Undisable submit after timeout (8 replies, posted in PunBB 1.2 bug reports)
ideadesigners: In what scenario would you need to go back?
1,507 2005-09-20 20:07
Re: German language pack for punbb 1.2beta (8 replies, posted in PunBB 1.2 discussion)
rickard at this domain
1,508 2005-09-20 08:49
Re: German language pack for punbb 1.2beta (8 replies, posted in PunBB 1.2 discussion)
Could you e-mail me the updated pack?
1,509 2005-09-20 08:49
Re: Uploading (1 replies, posted in PunBB 1.2 troubleshooting)
If you're looking for a free host for your forums, have a look at MyPunBB.
1,510 2005-09-20 08:48
Re: Alt text for smilies (6 replies, posted in Feature requests)
I'm not sure, but I think I did it like this for a reason. Hmm.
1,511 2005-09-19 14:04
Re: Profile.php problem (8 replies, posted in Programming)
That depends on to which section of the profile you added the new fields. Between the two pieces of code I posted above, you will find a big switch(). In each case of this switch, you will find a line that looks something like this:
$form = extract_elements(array('timezone', 'language'));
This one is from the "essentials" section. If you've added a new field to that section that's called 'occupation', you would just add that name to the end of the array of elements. I.e.
$form = extract_elements(array('timezone', 'language', 'occupation'));
That should do it.
1,512 2005-09-19 07:28
Re: Ideas for multi-lingual / multi-site solution ? (1 replies, posted in PunBB 1.2 discussion)
Number three should be possible. I have never tried it myself, but it should only be a matter of a little search and replace.
1,513 2005-09-19 07:25
Re: Profile.php problem (8 replies, posted in Programming)
It starts at
else if (isset($_POST['form_sent']))
and then the profile is updated at
$db->query('UPDATE '.$db->prefix.'users SET '.implode(',', $temp).' WHERE id='.$id) or error('Unable to update profile', __FILE__, __LINE__, $db->error());
1,514 2005-09-19 07:23
Re: announcments (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
If you mean an announcement like the one we have here, it's at the bottom of admin/options.
1,515 2005-09-18 18:55
Re: iso 88-59-1 problem (7 replies, posted in Programming)
Try replacing the line
printf("%s</br></br>",htmlspecialchars(trim($description)));
with
printf("%s</br></br>",trim($description));
1,516 2005-09-18 18:51
Re: Converting phpBB->punBB ... phpBB prefix probs (6 replies, posted in PunBB 1.2 troubleshooting)
Ok, cool
1,517 2005-09-18 17:30
Re: [groups] How to read only one forum (1 replies, posted in PunBB 1.2 troubleshooting)
There is no quick way to do it. What you have to do is to set the "Read forum" permission for each forum/group individually in admin/forums.
1,518 2005-09-18 17:29
Re: Sub gallery mod? (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Or Mr Moderator here could have moved the topic himself
1,519 2005-09-18 17:26
Re: Converting phpBB->punBB ... phpBB prefix probs (6 replies, posted in PunBB 1.2 troubleshooting)
Maybe Chacmool, the author of the migration tool, should be reading this
1,520 2005-09-18 17:25
Re: iso 88-59-1 problem (7 replies, posted in Programming)
Well, from where are you fetching the RSS?
1,521 2005-09-18 17:25
Re: Guest forced login, should be simple, please help (29 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Huh?
1,522 2005-09-18 00:37
Re: Is there a simple solution to use archives generated by newsgenerator (13 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I haven't done anything about it since the archives are in the forums anyway.
1,523 2005-09-18 00:37
Re: iso 88-59-1 problem (7 replies, posted in Programming)
The problem is that you're running htmlspecialchars() on the content before outputting it. This is generally a good idea, but in this case, it appears as if the content contains markup that you probably don't want altered.
1,524 2005-09-17 21:22
Re: Email verification - error 451 (5 replies, posted in PunBB 1.2 bug reports)
Yes, something like that looks good.
1,525 2005-09-17 21:15
Re: Email verification - error 451 (5 replies, posted in PunBB 1.2 bug reports)
Ah, I forgot about my homegrown SMTP code. I don't think a lot of people use it though. It's only there as a last resort if the server's PHP environment, for some odd reason, does not support mail(). I will fix it for the next release.