Re: Hi, I just reinstalled the

Posts: 37
Joined: 09/30/2007

It would not be good to edit line 172 as it is an error routine:

if ($debug) {
print 'query: '. $query .'error:'. mysql_error($active_db) .'';
}

if (!mysql_errno($active_db)) {
return $result;
}
else {
trigger_error(check_plain(mysql_error($active_db) ."\nquery: ". $query), E_USER_WARNING);
return FALSE;
}
}

The trigger_error is line 172.

Beta 2 Update By: Dale Vogel (9 replies) Fri, 01/25/2008 - 16:25