From 7ecaf94317685caddb14c5bd8476b05e5c6dd84e Mon Sep 17 00:00:00 2001 From: "Donald A. Lobo" Date: Tue, 22 Oct 2013 13:49:29 -0700 Subject: [PATCH] CRM-13621 - fix error messages ---------------------------------------- * CRM-13621: Handle invalid session errors especially for public pages in a nicer manner http://issues.civicrm.org/jira/browse/CRM-13621 --- CRM/Core/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Controller.php b/CRM/Core/Controller.php index bd983966c5..22a5bf579c 100644 --- a/CRM/Core/Controller.php +++ b/CRM/Core/Controller.php @@ -802,7 +802,7 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller { */ public function invalidKeyRedirect() { if ($this->_entryURL) { - CRM_Core_Session::setStatus(ts('We have lost your user session and are unable to complete your form submission. We have returned you to the initial step in the form which you can complete and resubmit. If you experience continued difficulties, please contact us for assistance.')); + CRM_Core_Session::setStatus(ts('Your browser session has expired and we are unable to complete your form submission. We have returned you to the initial step so you can complete and resubmit the form. If you experience continued difficulties, please contact us for assistance.')); return CRM_Utils_System::redirect($this->_entryURL); } else { -- 2.25.1