mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 17:18:54 +01:00
Fix missing () on an if
This commit is contained in:
parent
8f95f4b6f6
commit
43a9ef07e1
@ -230,7 +230,7 @@
|
||||
// Loop until we find a free id
|
||||
$free = 0;
|
||||
while (!$free) {
|
||||
if $this->exists($nextid)
|
||||
if ($this->exists($nextid))
|
||||
{
|
||||
$nextid = $phpgw->common->next_id("accounts_sql",$min,$max);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user