mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 11:23:54 +01:00
silenced permanent error_log and fixed a typo
This commit is contained in:
parent
767069a54c
commit
a908477fe7
@ -273,7 +273,7 @@ class accounts_sql
|
|||||||
*/
|
*/
|
||||||
function members($account_id)
|
function members($account_id)
|
||||||
{
|
{
|
||||||
if (!is_numeric($account_id)) $account_id = $this-name2id($account_id);
|
if (!is_numeric($account_id)) $account_id = $this->name2id($account_id);
|
||||||
|
|
||||||
$members = array();
|
$members = array();
|
||||||
foreach($this->db->select($this->table, 'account_id,account_lid',
|
foreach($this->db->select($this->table, 'account_id,account_lid',
|
||||||
@ -468,7 +468,7 @@ class accounts_sql
|
|||||||
}
|
}
|
||||||
if (!($rs = $this->db->select($table,$cols,$where,__LINE__,__FILE__)) || !($row = $rs->fetch()))
|
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());
|
//error_log(__METHOD__."('$name', '$which', ".array2string($account_type).") db->select('$table', '$cols', ".array2string($where).") returned ".array2string($rs).' '.function_backtrace());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return ($row['account_type'] == 'g' ? -1 : 1) * $row['account_id'];
|
return ($row['account_type'] == 'g' ? -1 : 1) * $row['account_id'];
|
||||||
|
Loading…
Reference in New Issue
Block a user