Skip to content

Commit

Permalink
[mms] Fix clearing authentication-related registry caches when initia…
Browse files Browse the repository at this point in the history
…lizing a session in certain instances (Bug #13329).
  • Loading branch information
slusarz committed Jul 8, 2014
1 parent 61dff1f commit ab78d54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/Core/lib/Horde/Registry.php
Expand Up @@ -2497,8 +2497,9 @@ public function setAuth($authId, $credentials, array $options = array())
}
$session->set('horde', 'auth/timestamp', time());
$session->set('horde', 'auth/userId', $this->convertUsername(trim($authId), true));

$this->_cache['auth'] = null;
$this->_cache['existing'] = array();
$this->_cache['existing'] = $this->_cache['isauth'] = array();

$this->setAuthCredential($credentials, null, $app);

Expand Down
2 changes: 2 additions & 0 deletions framework/Core/package.xml
Expand Up @@ -39,6 +39,7 @@
</stability>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
* [mms] Fix clearing authentication-related registry caches when initializing a session in certain instances (Bug #13329).
* [mms] Sanity checking in case smartmobile URL contains anchor that doesn&apos;t exist on the page.
</notes>
<contents>
Expand Down Expand Up @@ -3527,6 +3528,7 @@
<date>2014-07-08</date>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
* [mms] Fix clearing authentication-related registry caches when initializing a session in certain instances (Bug #13329).
* [mms] Sanity checking in case smartmobile URL contains anchor that doesn&apos;t exist on the page.
</notes>
</release>
Expand Down

0 comments on commit ab78d54

Please sign in to comment.