fixed typo causing preferences not to be deleted, when users or groups get deleted

This commit is contained in:
Ralf Becker 2014-01-14 11:54:51 +00:00
parent 58b56fd630
commit 57e124f03a

View File

@ -570,7 +570,7 @@ class preferences
*/ */
function delete_user($accountid) function delete_user($accountid)
{ {
if ($account_id > 0) if ($accountid > 0)
{ {
$this->delete($this->table,array('preference_owner' => $accountid),__LINE__,__FILE__); $this->delete($this->table,array('preference_owner' => $accountid),__LINE__,__FILE__);
} }
@ -583,7 +583,7 @@ class preferences
*/ */
function delete_group($accountid) function delete_group($accountid)
{ {
if ($account_id < 0) if ($accountid < 0)
{ {
$this->delete($this->table,array('preference_owner' => $accountid+self::DEFAULT_ID),__LINE__,__FILE__); $this->delete($this->table,array('preference_owner' => $accountid+self::DEFAULT_ID),__LINE__,__FILE__);
} }