aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache
diff options
context:
space:
mode:
authorJagoba Los Arcos <moledj@moledj.com>2017-08-14 13:00:54 +0200
committerGitHub <noreply@github.com>2017-08-14 13:00:54 +0200
commit4e5fd9a6e925487fe424538f4a2e6905f00da43d (patch)
tree30328e84c76553cd488172be3160e0f0c065fe11 /phpBB/phpbb/cache
parenta6c9119dfa1cf812292fffe1131f3b9f3bfebfc7 (diff)
downloadforums-4e5fd9a6e925487fe424538f4a2e6905f00da43d.tar
forums-4e5fd9a6e925487fe424538f4a2e6905f00da43d.tar.gz
forums-4e5fd9a6e925487fe424538f4a2e6905f00da43d.tar.bz2
forums-4e5fd9a6e925487fe424538f4a2e6905f00da43d.tar.xz
forums-4e5fd9a6e925487fe424538f4a2e6905f00da43d.zip
[ticket/15320] Fix to accomplish coding guidelines
Diffstat (limited to 'phpBB/phpbb/cache')
-rw-r--r--phpBB/phpbb/cache/driver/redis.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cache/driver/redis.php b/phpBB/phpbb/cache/driver/redis.php
index 8c9cd933a5..eaeb529918 100644
--- a/phpBB/phpbb/cache/driver/redis.php
+++ b/phpBB/phpbb/cache/driver/redis.php
@@ -137,7 +137,7 @@ class redis extends \phpbb\cache\driver\memory
*/
function _write($var, $data, $ttl = 2592000)
{
- if($ttl == 0)
+ if ($ttl == 0)
{
return $this->redis->set($var, $data);
}