From e69299b1d8d39aa7bfc7f34a14eee365940151da Mon Sep 17 00:00:00 2001 From: "Donald A. Lobo" Date: Fri, 28 Feb 2014 12:19:12 -0800 Subject: [PATCH] CRM-14294 - Fix typo in function call to retrieve in Controller.php http://issues.civicrm.org/jira/browse/CRM-14294 --- CRM/Core/Controller.php | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/CRM/Core/Controller.php b/CRM/Core/Controller.php index 21a4ac461b..6cc187e352 100644 --- a/CRM/Core/Controller.php +++ b/CRM/Core/Controller.php @@ -187,17 +187,11 @@ class CRM_Core_Controller extends HTML_QuickForm_Controller { // lets try to get it from the session and/or the request vars // we do this early on in case there is a fatal error in retrieving the // key and/or session - $this->_entryURL = CRM_Utils_Request::retrieve( - 'entryURL', - 'String', - $this, - FALSE, - NULL, - $_REQUEST - ); + $this->_entryURL = + CRM_Utils_Request::retrieve('entryURL', 'String', $this); // add a unique validable key to the name - $name = CRM_Utils_System::getClassName($this); + $name = CRM_Utils_System::getClassName($this); if ($name == 'CRM_Core_Controller_Simple' && !empty($scope)) { // use form name if we have, since its a lot better and // definitely different for different forms -- 2.25.1