Merge branch '3.2.x'

* 3.2.x:
  [ticket/15303] Correctly refer to $memcached and not $memcache
This commit is contained in:
Tristan Darricau 2017-08-06 11:32:56 +02:00
commit 8422d1551b
No known key found for this signature in database
GPG key ID: 817043C2E29DB881

View file

@ -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]));
}
}