1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/13930] Add missing spaces to code

PHPBB3-13930
This commit is contained in:
Marc Alexander
2015-06-07 22:53:41 +02:00
parent 6687b7e9ab
commit 9203bf3141
4 changed files with 4 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ class memcache extends \phpbb\cache\driver\memory
parent::__construct();
$this->memcache = new \Memcache;
foreach(explode(',', PHPBB_ACM_MEMCACHE) as $u)
foreach (explode(',', PHPBB_ACM_MEMCACHE) as $u)
{
$parts = explode('/', $u);
$this->memcache->addServer(trim($parts[0]), trim($parts[1]));