</configenum>
</configtab>
+ <configtab name="cache" desc="Caching">
+ <configboolean name="caching" desc="Allow caching of views? This requires
+ that a caching backend be configured in Horde.">false</configboolean>
+ </configtab>
+
<configtab name="menu" desc="Menu Settings">
<configsection name="menu">
<configheader>Menu Settings</configheader>
v3.0-git
--------
+[mms] Add configuration option to disable caching.
[mms] Move log entries in annotate screen to an AJAX request.
[mms] Add support for git repositories.
$notification->attach('status');
// Cache.
-$cache = &Horde_Cache::singleton($conf['cache']['driver'], Horde::getDriverConfig('cache', $conf['cache']['driver']));
+if (!empty($conf['caching'])) {
+ $cache = &Horde_Cache::singleton($conf['cache']['driver'], Horde::getDriverConfig('cache', $conf['cache']['driver']));
+}
// Horde base libraries.
require_once 'Horde/Text.php';