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…
Reference in New Issue