WEforums:
in vB 2.3.0, around line 196 (unhacked index.php), you will find this bit of code:
PHP Code:
}
}
$DB_site->free_result($loggedins);
The first } that you see there, is the closing tag that I'm talking about in the Hack instructions. So, your code should look like this:
PHP Code:
}
$staffusers = implode(", ", $su_r);
$normalusers = implode(", ", $nu_r);
$activeusers = iif($staffusers!="", "Staff: $staffusers <br />", "") . iif($normalusers!="", "Members: $normalusers", "");
}
$DB_site->free_result($loggedins);
Lemme know if you got it, now