]> git.mxchange.org Git - friendica.git/commitdiff
Don't forget the brackets
authorMichael <heluecht@pirati.ca>
Sat, 28 Jan 2017 06:21:58 +0000 (06:21 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 28 Jan 2017 06:21:58 +0000 (06:21 +0000)
include/Core/PConfig.php

index cdf22c083dd291160c1d7b2f9badc00b838c0640..6ced9fc7553fc6fa1198848c123db0405490f5c9 100644 (file)
@@ -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;
                }