Fix missing () on an if

This commit is contained in:
Miles Lott 2001-04-06 21:38:41 +00:00
parent 8f95f4b6f6
commit 43a9ef07e1

View File

@ -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);
}