fixed broken install under PostgreSQL caused by PHP Fatal error: Call to a member function fetch() on a non-object

This commit is contained in:
Ralf Becker 2013-10-15 11:42:28 +00:00
parent 345a9bdc52
commit 319a503c90

View File

@ -525,8 +525,11 @@ class accounts_sql
($table == $this->contacts_table ? " AND contact_tid != 'D'" : ''); // ignore deleted accounts contact-data
}
if (!($row = $this->db->select($table,$cols,$where,__LINE__,__FILE__)->fetch())) return false;
if (!($rs = $this->db->select($table,$cols,$where,__LINE__,__FILE__)) || !($row = $rs->fetch()))
{
error_log(__METHOD__."('$name', '$which', ".array2string($account_type).") db->select('$table', '$cols', ".array2string($where).") returned ".array2string($rs).' '.function_backtrace());
return false;
}
return ($row['account_type'] == 'g' ? -1 : 1) * $row['account_id'];
}