Changeset e2dfb5e in github


Ignore:
Timestamp:
Dec 28, 2011 4:26:19 AM (17 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
81c2ce9
Parents:
a267c6c
Message:
  • Fix handling of INBOX's subfolders in special folders config (#1488279)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r5e8c772 re2dfb5e  
    22=========================== 
    33 
     4- Fix handling of INBOX's subfolders in special folders config (#1488279) 
    45- Add ifModule statement for setting Options -Indexes in .htaccess file (#1488274) 
    56- Fix crashes with eAccelerator (#1488256) 
  • program/steps/settings/func.inc

    ra90ad28 re2dfb5e  
    705705      // load folders list only when needed 
    706706      if ($current) { 
    707         $select = rcmail_mailbox_select(array('noselection' => '---', 'realnames' => true, 
    708           'maxlength' => 30, 'exceptions' => array('INBOX'), 'folder_filter' => 'mail', 'folder_rights' => 'w')); 
     707        $select = rcmail_mailbox_select(array( 
     708          'noselection'   => '---', 
     709          'realnames'     => true, 
     710          'maxlength'     => 30, 
     711          'folder_filter' => 'mail', 
     712          'folder_rights' => 'w', 
     713          // #1486114, #1488279 
     714          'onchange'      => "if ($(this).val() == 'INBOX') $(this).val('')", 
     715        )); 
    709716      } 
    710717      else // dummy select 
Note: See TracChangeset for help on using the changeset viewer.