
01-08-2005, 07:28 PM
|
|
|
Join Date: Feb 2004
Location: Landen(Belgium)
Posts: 1,335
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by drl2005
Hello sv1cec
When I look at the users (View Banned Users) in the mod of adminCP I get the next error.
HTML Code:
Parse error: parse error in /var/www/html/forum/modcp/banning.php on line 518
It's a edit file of the warning system, what can I do.
vb 3.0.5 file :
PHP Code:
print_table_header("$vbphrase[banned_users]: $vbphrase[temporary_ban] <span class=\"normal\">$vbphrase[usergroups]: " . implode(', ',
$querygroups) . "</span>", 7);
Edited file :
PHP Code:
print_table_header("$vbphrase[banned_users]: $vbphrase[temporary_ban] <span class=\"normal\">$vbphrase[usergroups]: " . implode(', ',
$querygroups) . "</span>", 8);$querygroups) . "</span>", 7);
Thnx, it's the only problem for me with 3.0.7 and vb3.0.5 
|
look carefully that you didn't forgot a ( { ) } or quotes parse error is php syntax related error you should look in the line number php tells you OR in the lines of code above it
|