aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Pandey <vishpandey2014@gmail.com>2017-03-14 02:27:18 +0530
committerMarc Alexander <admin@m-a-styles.de>2019-05-08 21:49:04 +0200
commitcf12223b25ebba131ce2cbe407227ed6abffa949 (patch)
tree1fd943f90662328917abcda8ff2353adabc84f36 /phpBB/phpbb/config
parent[ticket/11515] Change If...else statement struct (diff)
downloadphpbb-cf12223b25ebba131ce2cbe407227ed6abffa949.tar.gz
phpbb-cf12223b25ebba131ce2cbe407227ed6abffa949.tar.bz2
phpbb-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.php2
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;
}