fixed sql error on deleting users, thanks to Regis Leroy

This commit is contained in:
Ralf Becker 2005-10-13 14:26:29 +00:00
parent 1a5bfe70dd
commit ea1e8d89a2

View File

@ -725,7 +725,7 @@
return False;
}
$this->db->update($this->std_table,array('owner'=>$new_owner),array('owner'=>$old_owner),__LINE__,__FILE__);
$this->db->update($this->ext_table,array('contact_owner'=>$new_owner),array('owner'=>$old_owner),__LINE__,__FILE__);
$this->db->update($this->ext_table,array('contact_owner'=>$new_owner),array('contact_owner'=>$old_owner),__LINE__,__FILE__);
}
/* This is where the real work of delete() is done, shared class file contains calling function */