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 ...@@ -143,8 +143,8 @@ class Config extends Singleton
} }
foreach ($source as $itemKey => $itemValue) { foreach ($source as $itemKey => $itemValue) {
if ((is_bool($itemValue) && $itemValue == false) || // skip empty booleans if ((is_bool($itemValue) && $itemValue == false) || // skip empty booleans
$itemKey == null || trim($itemKey) == "" // skip empty tag names $itemKey === null || trim($itemKey) === "" // skip empty tag names
) { ) {
continue; 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