Changeset 682819f in github


Ignore:
Timestamp:
Aug 30, 2011 2:05:34 PM (22 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
Children:
4348692
Parents:
8757f5b
Message:
  • Fix imap_cache setting to values other than 'db' (#1488060)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r8757f5b r682819f  
    22=========================== 
    33 
     4- Fix imap_cache setting to values other than 'db' (#1488060) 
    45- Fix handling of attachments inside message/rfc822 parts (#1488026) 
    56- Make list of mimetypes that open in preview window configurable (#1487625) 
  • program/include/rcube_imap.php

    r20ed379 r682819f  
    38383838     * Enable or disable indexes caching 
    38393839     * 
    3840      * @param boolean $type Cache type (@see rcmail::get_cache) 
     3840     * @param string $type Cache type (@see rcmail::get_cache) 
    38413841     * @access public 
    38423842     */ 
     
    38443844    { 
    38453845        if ($type) { 
    3846             $this->caching = true; 
     3846            $this->caching = $type; 
    38473847        } 
    38483848        else { 
     
    38613861        if ($this->caching && !$this->cache) { 
    38623862            $rcmail = rcmail::get_instance(); 
    3863             $this->cache = $rcmail->get_cache('IMAP', $type); 
     3863            $this->cache = $rcmail->get_cache('IMAP', $this->caching); 
    38643864        } 
    38653865 
Note: See TracChangeset for help on using the changeset viewer.