CRM-14294 - Fix typo in function call to retrieve in Controller.php
authorDonald A. Lobo <lobo@civicrm.org>
Fri, 28 Feb 2014 20:19:12 +0000 (12:19 -0800)
committerDonald A. Lobo <lobo@civicrm.org>
Fri, 28 Feb 2014 20:19:12 +0000 (12:19 -0800)
http://issues.civicrm.org/jira/browse/CRM-14294

CRM/Core/Controller.php

index 21a4ac461b3686fa30c2a2e9eee793b5096a610c..6cc187e35201315652747dde45b849d196e974e6 100644 (file)
@@ -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