Skip to content
Snippets Groups Projects
Commit bc01c6b1 authored by Stan's avatar Stan
Browse files

Turn alert messages to permanent notifications instead of the fade out popups

parent 0b108560
No related branches found
No related tags found
No related merge requests found
......@@ -216,7 +216,7 @@ class CRM_Grant_Form_GrantProgramView extends CRM_Core_Form {
$page->assign('message', $message);
$page->assign('grant_program_name', $grantPrograms[$_POST['pid']]);
CRM_Core_Session::setStatus($message);
CRM_Core_Session::setStatus($message, '', 'no-popup');
$params['is_auto_email'] = 1;
CRM_Grant_BAO_GrantProgram::sendMail($_SESSION['CiviCRM']['userID'], $params, 'allocation');
}
......@@ -297,7 +297,7 @@ class CRM_Grant_Form_GrantProgramView extends CRM_Core_Form {
$result = CRM_Grant_BAO_Grant::add($row, $ids);
}
}
CRM_Core_Session::setStatus('Approved allocations finalized successfully.');
CRM_Core_Session::setStatus('Approved allocations finalized successfully.', '', 'no-popup');
}
}
......@@ -331,7 +331,7 @@ class CRM_Grant_Form_GrantProgramView extends CRM_Core_Form {
$grantProgramParams['id'] = $_POST['pid'];
$ids['grant_program'] = $_POST['pid'];
CRM_Grant_BAO_GrantProgram::create($grantProgramParams, $ids);
CRM_Core_Session::setStatus('Marked remaining unapproved Grants as Ineligible successfully.');
CRM_Core_Session::setStatus('Marked remaining unapproved Grants as Ineligible successfully.', '', 'no-popup');
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment