Skip to content

Commit

Permalink
Fix value invalidation in Icinga\Web\Session\SessionNamespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Meyer committed Sep 24, 2014
1 parent efab6c7 commit 7fcd665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Icinga/Web/Session/SessionNamespace.php
Expand Up @@ -120,7 +120,7 @@ public function set($key, $value)
$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;
Expand Down

0 comments on commit 7fcd665

Please sign in to comment.