fixed bug reported by Peter Goerzen and Nathan: deleting a contact from vi=

This commit is contained in:
Ralf Becker 2008-04-22 06:18:19 +00:00
parent 644e9794f0
commit b6a65d1d6a

View File

@ -1482,7 +1482,7 @@ class uicontacts extends bocontacts
case 'delete': case 'delete':
$GLOBALS['egw']->redirect_link('/index.php',array( $GLOBALS['egw']->redirect_link('/index.php',array(
'menuaction' => 'addressbook.uicontacts.index', '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 !!!'),
)); ));
} }
} }