Callable name case mismatched in a call.

This commit is contained in:
Yuriy Pikhtarev 2017-05-09 20:47:18 +03:00
commit 187ee44eda
No known key found for this signature in database
GPG key ID: 3A9B5A757B48ECC6

View file

@ -119,7 +119,7 @@ class cache_redis extends cache_common
return ($this->connected) ? $this->redis->del($this->prefix . $name) : false; return ($this->connected) ? $this->redis->del($this->prefix . $name) : false;
} else { } else {
return ($this->connected) ? $this->redis->flushdb() : false; return ($this->connected) ? $this->redis->flushDB() : false;
} }
} }