mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-04 14:13:11 -04:00
Fix value invalidation in Icinga\Web\Session\SessionNamespace
This commit is contained in:
parent
efab6c7827
commit
7fcd665aaa
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ class SessionNamespace implements IteratorAggregate
|
|||
$this->values[$key] = $value;
|
||||
|
||||
if (in_array($key, $this->removed)) {
|
||||
unset($this->removed[array_search($key, $this->values)]);
|
||||
unset($this->removed[array_search($key, $this->removed)]);
|
||||
}
|
||||
|
||||
return $this;
|
||||
|
|
|
|||
Loading…
Reference in a new issue