aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2017-08-06 11:32:56 +0200
committerTristan Darricau <github@nicofuma.fr>2017-08-06 11:32:56 +0200
commit1fcf0d480861e30c73d5624f76cfba0eb3c9d1d6 (patch)
treeea408d4399b2322486dd2904fe0e04166a0172ff /phpBB
parentaa5a0f62c4ed69a594e588becb558bd2f643254c (diff)
parentef404d0f95a3fd47c936239c1f6392b5851440b9 (diff)
downloadforums-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.php2
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]));
}
}