mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
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');
|
||||
|
||||
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__);
|
||||
return -$id;
|
||||
|
Loading…
Reference in New Issue
Block a user