Commit 5e22c020 authored by Ad Schellevis's avatar Ad Schellevis

small typo in previous fix

parent cb9f8219
......@@ -143,8 +143,8 @@ class Config extends Singleton
}
foreach ($source as $itemKey => $itemValue) {
if ((is_bool($itemValue) && $itemValue == false) || // skip empty booleans
$itemKey == null || trim($itemKey) == "" // skip empty tag names
if ((is_bool($itemValue) && $itemValue == false) || // skip empty booleans
$itemKey === null || trim($itemKey) === "" // skip empty tag names
) {
continue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment