Quote:
Originally Posted by Avalon111
have your tried it?
|
I did, here is the error with 3.5:
Fatal error: Call to a member function on a non-object in /home/mysite/public_html/forum/admincp/admin_pmall.php on line 46
Line 46 is:
Code:
// ----------------------------
// Get Usergroups
// ----------------------------
$UserGroups = array();
$usergroups = $DB->query("SELECT * FROM " . TABLE_PREFIX . "usergroup ORDER BY title");
while($usergroup = $DB_site->fetch_array($usergroups)){
$UserGroups[] = array(
'uid' => $usergroup['usergroupid'],
'u_name' => $usergroup['title'],
);
}