aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}