second parameter was missing and generating a warning

This commit is contained in:
Lars Kneschke 2004-03-25 06:33:21 +00:00
parent 5d481b5d94
commit 95ed13e717
2 changed files with 2 additions and 2 deletions

View File

@ -443,7 +443,7 @@
}
else
{
$this->bo->delete($this->cat_id);
$this->bo->delete($this->cat_id,False);
}
$GLOBALS['phpgw']->redirect_link('/index.php',$link_data);
}

View File

@ -551,7 +551,7 @@
}
else
{
$this->bo->delete($cat_id);
$this->bo->delete($cat_id,False);
}
$GLOBALS['phpgw']->redirect_link('/index.php',$link_data);
}