From: Coleman Watts Date: Mon, 12 Jan 2015 03:21:49 +0000 (-0500) Subject: Fix static fn use of $this X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b9c81d6ad88743787a16e20594de198d05113ff8;p=civicrm-core.git Fix static fn use of $this --- diff --git a/CRM/Grant/Selector/Search.php b/CRM/Grant/Selector/Search.php index f1e532cb6e..591b6625a0 100644 --- a/CRM/Grant/Selector/Search.php +++ b/CRM/Grant/Selector/Search.php @@ -186,7 +186,7 @@ class CRM_Grant_Selector_Search extends CRM_Core_Selector_Base implements CRM_Co * @return array */ public static function &links($key = NULL) { - $cid = CRM_Utils_Request::retrieve('cid', 'Integer', $this); + $cid = CRM_Utils_Request::retrieve('cid', 'Integer'); $extraParams = ($key) ? "&key={$key}" : NULL; if (!(self::$_links)) {