Fatal error: Call to a member function on a non-object in /homepages/40/*******/htdocs/bloodpact/modules/WoWRosterDF/lib/wowdb.php on line 383
Here is what the file looked like before this recent edit. Lines 380-386:
- Code: Select all
//wowrosterdf version
function affected_rows()
{
global $db;
//return $db->sql_affected_rows($this->db);
return $db->sql_affectedrows($this->db);
}
And here is how it looks after the edit. Lines 380-386:
- Code: Select all
//wowrosterdf version
function affected_rows()
{
global $db;
return $db->sql_affectedrows($this->db);
}
Could it be something in the way I have the add-on configured?