Changeset 682819f in github
- Timestamp:
- Aug 30, 2011 2:05:34 PM (22 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
- Children:
- 4348692
- Parents:
- 8757f5b
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r8757f5b r682819f 2 2 =========================== 3 3 4 - Fix imap_cache setting to values other than 'db' (#1488060) 4 5 - Fix handling of attachments inside message/rfc822 parts (#1488026) 5 6 - Make list of mimetypes that open in preview window configurable (#1487625) -
program/include/rcube_imap.php
r20ed379 r682819f 3838 3838 * Enable or disable indexes caching 3839 3839 * 3840 * @param boolean$type Cache type (@see rcmail::get_cache)3840 * @param string $type Cache type (@see rcmail::get_cache) 3841 3841 * @access public 3842 3842 */ … … 3844 3844 { 3845 3845 if ($type) { 3846 $this->caching = true;3846 $this->caching = $type; 3847 3847 } 3848 3848 else { … … 3861 3861 if ($this->caching && !$this->cache) { 3862 3862 $rcmail = rcmail::get_instance(); 3863 $this->cache = $rcmail->get_cache('IMAP', $t ype);3863 $this->cache = $rcmail->get_cache('IMAP', $this->caching); 3864 3864 } 3865 3865
Note: See TracChangeset
for help on using the changeset viewer.
