forked from extern/egroupware
fixed prob reported on the lists: new created account are not working
This commit is contained in:
parent
fec07c13a3
commit
b68c7922c0
@ -321,7 +321,7 @@
|
|||||||
|
|
||||||
$id = $account_data['account_id'] ? $account_data['account_id'] : $this->db->get_last_insert_id($this->table,'account_id');
|
$id = $account_data['account_id'] ? $account_data['account_id'] : $this->db->get_last_insert_id($this->table,'account_id');
|
||||||
|
|
||||||
if ($id > 0)
|
if ($account_info['account_type'] == 'g' && $id > 0) // create negative id for groups
|
||||||
{
|
{
|
||||||
$this->db->update($this->table,array('account_id' => -$id),array('account_id' => $id),__LINE__,__FILE__);
|
$this->db->update($this->table,array('account_id' => -$id),array('account_id' => $id),__LINE__,__FILE__);
|
||||||
return -$id;
|
return -$id;
|
||||||
|
Loading…
Reference in New Issue
Block a user