diff options
author | Vishal Pandey <vishpandey2014@gmail.com> | 2017-03-14 02:27:18 +0530 |
---|---|---|
committer | Vishal Pandey <vishpandey2014@gmail.com> | 2017-03-14 02:27:18 +0530 |
commit | 4f71a75df1653c308e5f6089772abb1503f861a0 (patch) | |
tree | 14e188dce8a68728d6b068bed00a3f1ef6770ed8 /phpBB/phpbb | |
parent | [ticket/11515] Change If...else statement struct (diff) | |
download | phpbb-4f71a75df1653c308e5f6089772abb1503f861a0.tar.gz phpbb-4f71a75df1653c308e5f6089772abb1503f861a0.tar.bz2 phpbb-4f71a75df1653c308e5f6089772abb1503f861a0.zip |
[ticket/11515] Space between if and braces
Exactly one space between if and opening brace.
PHPBB3-11515
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/config/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/config/config.php b/phpBB/phpbb/config/config.php index 239e4c2e55..0a867342f5 100644 --- a/phpBB/phpbb/config/config.php +++ b/phpBB/phpbb/config/config.php @@ -160,7 +160,7 @@ class config implements \ArrayAccess, \IteratorAggregate, \Countable */ public function ensure_lock($key, $new_value) { - if(isset($this->config[$key]) && $this->config[$key] == $new_value) + if (isset($this->config[$key]) && $this->config[$key] == $new_value) { return true; } |