Fix for config.php prefix error
Brought to you by:
kirigoe,
sinner_prairy
Checking a user when prefixing gives an error.
However after having a look I supprised myself and
spotted the problem
Line 257 change:
$query = "SELECT * FROM user WHERE id='$id'";
to:
$query = "SELECT * FROM $GLOBALS
[mysql_prefix]user WHERE id='$id'";
which seemed to fix the issue for me.