diff options
author | abyssmedia <30393121+abyssmedia@users.noreply.github.com> | 2017-07-24 00:04:43 +0400 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-08-05 12:19:47 +0200 |
commit | ef404d0f95a3fd47c936239c1f6392b5851440b9 (patch) | |
tree | ea408d4399b2322486dd2904fe0e04166a0172ff /phpBB/phpbb/cache/driver | |
parent | aa5a0f62c4ed69a594e588becb558bd2f643254c (diff) | |
download | forums-ef404d0f95a3fd47c936239c1f6392b5851440b9.tar forums-ef404d0f95a3fd47c936239c1f6392b5851440b9.tar.gz forums-ef404d0f95a3fd47c936239c1f6392b5851440b9.tar.bz2 forums-ef404d0f95a3fd47c936239c1f6392b5851440b9.tar.xz forums-ef404d0f95a3fd47c936239c1f6392b5851440b9.zip |
[ticket/15303] Correctly refer to $memcached and not $memcache
PHPBB3-15303
Diffstat (limited to 'phpBB/phpbb/cache/driver')
-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])); } } |