From 841c85b9db3090b8cf22e900b3975e530cfa09ae Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 18 Apr 2007 15:33:22 +0000 Subject: [PATCH] bugfix: typo prevened deletion of distribution lists --- addressbook/inc/class.bocontacts.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addressbook/inc/class.bocontacts.inc.php b/addressbook/inc/class.bocontacts.inc.php index 461c4d80e0..0c8a36f2cc 100755 --- a/addressbook/inc/class.bocontacts.inc.php +++ b/addressbook/inc/class.bocontacts.inc.php @@ -978,7 +978,7 @@ class bocontacts extends socontacts */ function delete_list($list) { - if (!$this->ceck_list($list,EGW_ACL_DELETE)) return false; + if (!$this->check_list($list,EGW_ACL_DELETE)) return false; return parent::delete_list($list); }