mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 09:38:53 +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
|
// Loop until we find a free id
|
||||||
$free = 0;
|
$free = 0;
|
||||||
while (!$free) {
|
while (!$free) {
|
||||||
if $this->exists($nextid)
|
if ($this->exists($nextid))
|
||||||
{
|
{
|
||||||
$nextid = $phpgw->common->next_id("accounts_sql",$min,$max);
|
$nextid = $phpgw->common->next_id("accounts_sql",$min,$max);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user