|
In the nuke.php file in the forums directory under reviewpost
Line 151-159
if ($cuserid != 0) {
if ( !empty( $Globals['dprefix'] ) ) {
$utable = "{$Globals['dprefix']}users";
$rtable = "{$Globals['dprefix']}ranks";
}
else {
$utable = "users";
$rtable = "ranks";
}
would become this
if ($cuserid != 0) {
if ( !empty( $Globals['dprefix'] ) ) {
$utable = "{$Globals['dprefix']}users";
$rtable = "{$Globals['dprefix']}bbranks";
}
else {
$utable = "users";
$rtable = "bbranks";
}
|