diff options
author | Tristan Darricau <github@nicofuma.fr> | 2017-08-06 11:32:56 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2017-08-06 11:32:56 +0200 |
commit | 1fcf0d480861e30c73d5624f76cfba0eb3c9d1d6 (patch) | |
tree | ea408d4399b2322486dd2904fe0e04166a0172ff /phpBB | |
parent | aa5a0f62c4ed69a594e588becb558bd2f643254c (diff) | |
parent | ef404d0f95a3fd47c936239c1f6392b5851440b9 (diff) | |
download | forums-1fcf0d480861e30c73d5624f76cfba0eb3c9d1d6.tar forums-1fcf0d480861e30c73d5624f76cfba0eb3c9d1d6.tar.gz forums-1fcf0d480861e30c73d5624f76cfba0eb3c9d1d6.tar.bz2 forums-1fcf0d480861e30c73d5624f76cfba0eb3c9d1d6.tar.xz forums-1fcf0d480861e30c73d5624f76cfba0eb3c9d1d6.zip |
Merge pull request #4886 from marc1706/ticket/15303
[ticket/15303] Correctly refer to $memcached and not $memcache
* github.com:phpbb/phpbb:
[ticket/15303] Correctly refer to $memcached and not $memcache
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/cache/driver/memcached.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cache/driver/memcached.php b/phpBB/phpbb/cache/driver/memcached.php index a7da22d7e8..808e15afe8 100644 --- a/phpBB/phpbb/cache/driver/memcached.php +++ b/phpBB/phpbb/cache/driver/memcached.php @@ -68,7 +68,7 @@ class memcached extends \phpbb\cache\driver\memory foreach (explode(',', PHPBB_ACM_MEMCACHE) as $u) { preg_match('#(.*)/(\d+)#', $u, $parts); - $this->memcache->addServer(trim($parts[1]), (int) trim($parts[2])); + $this->memcached->addServer(trim($parts[1]), (int) trim($parts[2])); } } |