diff options
author | Vishal Pandey <vishpandey2014@gmail.com> | 2017-03-14 02:27:18 +0530 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-05-08 21:49:04 +0200 |
commit | cf12223b25ebba131ce2cbe407227ed6abffa949 (patch) | |
tree | 1fd943f90662328917abcda8ff2353adabc84f36 /phpBB/phpbb/config | |
parent | 530e5bca87758342bfe0f212191ace8a709bdb75 (diff) | |
download | forums-cf12223b25ebba131ce2cbe407227ed6abffa949.tar forums-cf12223b25ebba131ce2cbe407227ed6abffa949.tar.gz forums-cf12223b25ebba131ce2cbe407227ed6abffa949.tar.bz2 forums-cf12223b25ebba131ce2cbe407227ed6abffa949.tar.xz forums-cf12223b25ebba131ce2cbe407227ed6abffa949.zip |
[ticket/11515] Space between if and braces
Exactly one space between if and opening brace.
PHPBB3-11515
Diffstat (limited to 'phpBB/phpbb/config')
-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; } |