From df8b44910a9759c2825982679e594c82785b1707 Mon Sep 17 00:00:00 2001 From: Hans Kuijpers Date: Sat, 31 May 2014 17:20:12 +0200 Subject: [PATCH] change self:: into static:: changing self::isSupported into static::isSupported since the function is static --- libraries/joomla/cache/storage/redis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/joomla/cache/storage/redis.php b/libraries/joomla/cache/storage/redis.php index 36765e8ceb9a6..c17f5963d64da 100644 --- a/libraries/joomla/cache/storage/redis.php +++ b/libraries/joomla/cache/storage/redis.php @@ -61,7 +61,7 @@ public function __construct($options = array()) */ protected function getConnection() { - if (self::isSupported()) != true) + if (static::isSupported() != true) { return false; }