actually fixed key normalizing

This commit is contained in:
Joby Elliott 2018-08-28 11:48:05 -06:00
parent 83ef07aee2
commit a181bb0abc

View file

@ -145,7 +145,7 @@ trait FlatArrayTrait
{
//normalize key names in $value, and also $name
$value = $this->normalizeValue($value);
$name = preg_replace('/\./', '', strtolower($name));
$name = strtolower($name);
//check for home strings
if ($name == '' || $name === null) {
if ($unset) {