Skip to content

Commit

Permalink
[jan] Fix session preference driver.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Nov 23, 2016
1 parent 680f730 commit 272baec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion framework/Core/lib/Horde/Core/Factory/Prefs.php
Expand Up @@ -67,7 +67,7 @@ public function create($scope = 'horde', array $opts = array())
$conf['prefs']['driver'] == 'Session') {
$driver = 'Horde_Prefs_Storage_Null';
$params = array();
$opts['cache'] = false;
$opts['cache'] = $conf['prefs']['driver'] == 'Session';
} else {
$driver = $conf['prefs']['driver'];
switch (Horde_String::lower($driver)) {
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>
* [jan] Fix session preference driver.
* [jan] Don&apos;t pollute DB DSN with unknown parameters when using Cyrsql authentication driver.
* [mjr] Refresh mailbox list when retrieving for ActiveSync.
</notes>
Expand Down Expand Up @@ -4319,6 +4320,7 @@
<date>2016-11-14</date>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
* [jan] Fix session preference driver.
* [jan] Don&apos;t pollute DB DSN with unknown parameters when using Cyrsql authentication driver.
* [mjr] Refresh mailbox list when retrieving for ActiveSync.
</notes>
Expand Down

0 comments on commit 272baec

Please sign in to comment.