From 32b997823fb8131703449f516c37c78887d8ff32 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 28 Jan 2017 06:21:58 +0000 Subject: [PATCH] Don't forget the brackets --- include/Core/PConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Core/PConfig.php b/include/Core/PConfig.php index cdf22c083..6ced9fc75 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; }