mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
Fix value invalidation in Icinga\Web\Session\SessionNamespace
This commit is contained in:
parent
efab6c7827
commit
7fcd665aaa
@ -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…
x
Reference in New Issue
Block a user