Fix bug where database_attachments_cache setting was not working

release-1.0
Aleksander Machniak 9 years ago
parent 6ccd4c54bc
commit ead2368b71

@ -155,7 +155,7 @@ class database_attachments extends filesystem_attachments
$type = $rcmail->config->get('database_attachments_cache', 'db');
// Init SQL cache (disable cache data serialization)
$this->cache = $rcmail->get_cache($this->prefix, 'db', $ttl, false);
$this->cache = $rcmail->get_cache($this->prefix, $type, $ttl, false);
}
return $this->cache;

Loading…
Cancel
Save