PsychoStats and PHP 5.3
1,200 viewsOpen includes/common.php change line 45
from
error_reporting(E_ALL ^ E_NOTICE);
to
error_reporting(E_ERROR);
Open includes/class_table.php change line 163
from
$ret = call_user_func_array($callback, $params ? array($html, $params) : $html);
to
$ret = call_user_func_array($callback, $params ? array($html, $params) : array($html));
1 Comment »
RSS feed for comments on this post. TrackBack URL
I had a problem with this and after change all works great
Thank you so much.