I found another bug in profile.php - You need to be in profile under administration
If you're using forums with the "&" in the names. example: YOU&ME you get errors. I got the following using FireFox's HTML Validator:
line 115 column 30 - Warning: unescaped & which should be written as &
line 124 column 28 - Warning: unescaped & which should be written as &
line 178 column 34 - Warning: unescaped & which should be written as &
This line:
echo "\t\t\t\t\t\t\t".'<div class="conl">'."\n\t\t\t\t\t\t\t\t".'<p><strong>'.$cur_forum['cat_name'].'</strong></p>'."\n\t\t\t\t\t\t\t\t".'<div class="rbox">';
should be changed to:
echo "\t\t\t\t\t\t\t".'<div class="conl">'."\n\t\t\t\t\t\t\t\t".'<p><strong>'.pun_htmlspecialchars($cur_forum['cat_name']).'</strong></p>'."\n\t\t\t\t\t\t\t\t".'<div class="rbox">';
Cheers!
Bingiman