From: Michael Date: Sat, 28 Jan 2017 06:21:58 +0000 (+0000) Subject: Don't forget the brackets X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=32b997823fb8131703449f516c37c78887d8ff32;p=friendica.git Don't forget the brackets --- diff --git a/include/Core/PConfig.php b/include/Core/PConfig.php index cdf22c083d..6ced9fc755 100644 --- a/include/Core/PConfig.php +++ b/include/Core/PConfig.php @@ -138,7 +138,7 @@ class PConfig { $stored = self::get($uid, $family, $key, null, true); - if ($stored === $dbvalue AND self::$in_db[$uid][$family][$key]) { + if (($stored === $dbvalue) AND self::$in_db[$uid][$family][$key]) { return true; }