From b6a65d1d6a3567c596ba1d251c28f5de7f43ca9a Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 22 Apr 2008 06:18:19 +0000 Subject: [PATCH] fixed bug reported by Peter Goerzen and Nathan: deleting a contact from vi= --- addressbook/inc/class.uicontacts.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addressbook/inc/class.uicontacts.inc.php b/addressbook/inc/class.uicontacts.inc.php index 7ec7a2b41c..0453dcb530 100644 --- a/addressbook/inc/class.uicontacts.inc.php +++ b/addressbook/inc/class.uicontacts.inc.php @@ -1482,7 +1482,7 @@ class uicontacts extends bocontacts case 'delete': $GLOBALS['egw']->redirect_link('/index.php',array( 'menuaction' => 'addressbook.uicontacts.index', - 'msg' => $this->delete($content) ? lang('Error deleting the contact !!!') : lang('Contact deleted'), + 'msg' => $this->delete($content) ? lang('Contact deleted') : lang('Error deleting the contact !!!'), )); } }