Skip to content

Commit 7ef357a

Browse files
ContactController: Fix the retreival of contact full name during deletion (#191)
fix #190
2 parents 40d92d5 + c61ce78 commit 7ef357a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/controllers/ContactController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function indexAction()
5454
$contactElement = $form->getElement('contact');
5555
Notification::success(sprintf(
5656
t('Deleted contact "%s" successfully'),
57-
$contactElement->getValue()
57+
$contactElement->getValue('full_name')
5858
));
5959

6060
$this->redirectNow('__CLOSE__');

0 commit comments

Comments
 (0)