#185 make comparing attribute values more strict

This commit is contained in:
Roland Gruber 2017-02-21 19:57:50 +01:00
parent f57a6a4b3c
commit 453e0da077
2 changed files with 4 additions and 3 deletions

View File

@ -1496,7 +1496,7 @@ class accountContainer {
if (isset($orig[$name]) && is_array($orig[$name])) {
foreach ($orig[$name] as $j => $value) {
if (is_array($attributes[$name])) {
if (!in_array($value, $attributes[$name])) {
if (!in_array($value, $attributes[$name], true)) {
if ($value != '') $torem[$name][] = $value;
}
}
@ -1507,7 +1507,7 @@ class accountContainer {
if (isset($attributes[$name]) && is_array($attributes[$name])) {
foreach ($attributes[$name] as $j => $value) {
if (isset($orig[$name]) && is_array($orig[$name])) {
if (!in_array($value, $orig[$name]))
if (!in_array($value, $orig[$name], true))
if ($value != '') {
$toadd[$name][] = $value;
}
@ -1518,7 +1518,7 @@ class accountContainer {
// find unchanged attributes
if (isset($orig[$name]) && is_array($orig[$name]) && is_array($attributes[$name])) {
foreach ($attributes[$name] as $j => $value) {
if (($value != '') && in_array($value, $orig[$name])) {
if (($value != '') && in_array($value, $orig[$name], true)) {
$notchanged[$name][] = $value;
}
}

1
lam/tmp/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/*.jpg