Itworx4me
02-13-2005, 04:17 PM
Parse error: parse error, unexpected ')' in /home/***/public_html/forums/Warn.php on line 158
I get this error when trying to warn a member.
Thanks,
Itworx4me
Here is the fix for the parse error.
Line 158 of Warn.php file:
check_post($_POST['post'], $warn_opts['multiple_per_post']));
Change to:
check_post($_POST['post'], $warn_opts['multiple_per_post']);
Thanks,
Itworx4me
I get this error when trying to warn a member.
Thanks,
Itworx4me
Here is the fix for the parse error.
Line 158 of Warn.php file:
check_post($_POST['post'], $warn_opts['multiple_per_post']));
Change to:
check_post($_POST['post'], $warn_opts['multiple_per_post']);
Thanks,
Itworx4me