// We don't preload "system" anymore.
// This reduces the number of database reads a lot.
- if ($family == 'system') {
+ if ($family === 'system') {
return;
}
// Do we have the cached value? Then return it
if (isset(self::$cache[$family][$key])) {
- if (self::$cache[$family][$key] == '!<unset>!') {
+ if (self::$cache[$family][$key] === '!<unset>!') {
return $default_value;
} else {
return self::$cache[$family][$key];
$stored = self::get($family, $key);
- if ($stored == $value) {
+ if ($stored === $value) {
return true;
}