PDA

View Full Version : [fixed] Parse Error for PHP3 users on newreply and newthread



Scott MacVicar
Thu 19th Sep '02, 11:06am
Some functions were used in the username checking in the newthread and newreply.php files which was designed for only use in php4.

Open newreply.php and newthread.php and look for


foreach ($usernames as $val) {

replace this with


while (list(, $usernames) = each ($val)) {

This only effects php3 users.