From e92f006ee17dbfc906fcb81de055ee04507ddaf2 Mon Sep 17 00:00:00 2001 From: Edsel Date: Mon, 20 May 2013 17:59:03 +0530 Subject: [PATCH] CRM-12664 --Fix for Grant Delete notification --- CRM/Grant/Form/Task/Delete.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/CRM/Grant/Form/Task/Delete.php b/CRM/Grant/Form/Task/Delete.php index 8ba3b58218..e76f69d482 100644 --- a/CRM/Grant/Form/Task/Delete.php +++ b/CRM/Grant/Form/Task/Delete.php @@ -88,11 +88,8 @@ class CRM_Grant_Form_Task_Delete extends CRM_Grant_Form_Task { } } - $status = array( - ts('Deleted Grant(s): %1', array(1 => $deletedGrants)), - ts('Total Selected Grant(s): %1', array(1 => count($this->_grantIds))), - ); - CRM_Core_Session::setStatus($status); + CRM_Core_Session::setStatus(ts('Deleted Grant(s): %1', array(1 => $deletedGrants)), '', 'info'); + CRM_Core_Session::setStatus(ts('Total Selected Grant(s): %1', array(1 => count($this->_grantIds))), '', 'info'); } } -- 2.25.1