aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2015-06-09 21:27:23 +0200
committerAndreas Fischer <bantu@phpbb.com>2015-06-09 21:27:23 +0200
commit1f4976f5909d9203910f6d2c0953c0231b284963 (patch)
tree1fbf120d521b229b83a10c362ff079a58950489d /phpBB/phpbb/cache
parent00c15c76c30719773dab26949445a143870ddbee (diff)
parent1fae4152efd10c3eeb0e5e21d30a109c3ca9a36d (diff)
downloadforums-1f4976f5909d9203910f6d2c0953c0231b284963.tar
forums-1f4976f5909d9203910f6d2c0953c0231b284963.tar.gz
forums-1f4976f5909d9203910f6d2c0953c0231b284963.tar.bz2
forums-1f4976f5909d9203910f6d2c0953c0231b284963.tar.xz
forums-1f4976f5909d9203910f6d2c0953c0231b284963.zip
Merge pull request #3696 from marc1706/ticket/13930-master
[ticket/13930] Check for correct spacing between keyword & parenthesis * marc1706/ticket/13930-master: [ticket/13930] Add missing space to mssql_extractor [ticket/13930] Add missing spaces to code [ticket/13930] Use OpeningParenthesisSniff in legacy ruleset [ticket/13930] Remove not needed return statements [ticket/13930] Add missing spaces to code [ticket/13930] Check for correct spacing between keyword & parenthesis
Diffstat (limited to 'phpBB/phpbb/cache')
-rw-r--r--phpBB/phpbb/cache/driver/memcache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cache/driver/memcache.php b/phpBB/phpbb/cache/driver/memcache.php
index 406ab11ddd..caa82fb0b1 100644
--- a/phpBB/phpbb/cache/driver/memcache.php
+++ b/phpBB/phpbb/cache/driver/memcache.php
@@ -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]));