From e9d63767480adc3cbe61dc0f81b37555f7edbd31 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Tue, 30 Apr 2013 12:58:18 -0700 Subject: [PATCH] CRM_Utils_REST - Fix PHP 5.4 error --- CRM/Utils/REST.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Utils/REST.php b/CRM/Utils/REST.php index 3fa52d2ddf..c58250ba96 100644 --- a/CRM/Utils/REST.php +++ b/CRM/Utils/REST.php @@ -83,7 +83,7 @@ class CRM_Utils_REST { * @access public * @static */ - public function authenticate($name, $pass) { + public static function authenticate($name, $pass) { $result = CRM_Utils_System::authenticate($name, $pass); -- 2.25.1