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.

It works for me. Try again. I think it was a temporary problem.

Actually, it should be at punres.org or in the mod's topic here at punbb.org.

1,504

(18 replies, posted in General discussion)

Nice!

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

(8 replies, posted in PunBB 1.2 bug reports)

ideadesigners: In what scenario would you need to go back?

rickard at this domain

Could you e-mail me the updated pack?

1,509

(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

(6 replies, posted in Feature requests)

I'm not sure, but I think I did it like this for a reason. Hmm.

1,511

(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.

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

(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());

If you mean an announcement like the one we have here, it's at the bottom of admin/options.

1,515

(7 replies, posted in Programming)

Try replacing the line

printf("%s</br></br>",htmlspecialchars(trim($description)));

with

printf("%s</br></br>",trim($description));

Ok, cool smile

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.

Or Mr Moderator here could have moved the topic himself big_smile

Maybe Chacmool, the author of the migration tool, should be reading this

1,520

(7 replies, posted in Programming)

Well, from where are you fetching the RSS?

Huh?

I haven't done anything about it since the archives are in the forums anyway.

1,523

(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

(5 replies, posted in PunBB 1.2 bug reports)

Yes, something like that looks good.

1,525

(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.