diff --git a/app/Mage.php b/app/Mage.php index cb8efbaa817..2c14517e6f9 100644 --- a/app/Mage.php +++ b/app/Mage.php @@ -410,7 +410,8 @@ public static function getStoreConfig($path, $store = null) */ public static function getStoreConfigFlag($path, $store = null) { - $flag = strtolower(self::getStoreConfig($path, $store)); + $flag = self::getStoreConfig($path, $store); + $flag = is_string($flag) ? strtolower($flag) : $flag; if (!empty($flag) && $flag !== 'false') { return true; } else {