actually fixed key normalizing
This commit is contained in:
parent
83ef07aee2
commit
a181bb0abc
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue