Changeset 1495ac7 in github


Ignore:
Timestamp:
Apr 14, 2012 7:15:28 AM (13 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo
Children:
831c830
Parents:
9870dac
Message:
  • More public methods, code cleanup
Location:
program/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_charset.php

    r66d2152 r1495ac7  
    4545        'USERDEFINED'   => 'ISO-8859-15', 
    4646        'KSC56011987'   => 'EUC-KR', 
    47         'GB2312'            => 'GBK', 
    48         'GB231280'          => 'GBK', 
    49         'UNICODE'           => 'UTF-8', 
    50         'UTF7IMAP'          => 'UTF7-IMAP', 
    51         'TIS620'            => 'WINDOWS-874', 
    52         'ISO88599'          => 'WINDOWS-1254', 
    53         'ISO885911'         => 'WINDOWS-874', 
    54         'MACROMAN'          => 'MACINTOSH', 
     47        'GB2312'        => 'GBK', 
     48        'GB231280'      => 'GBK', 
     49        'UNICODE'       => 'UTF-8', 
     50        'UTF7IMAP'      => 'UTF7-IMAP', 
     51        'TIS620'        => 'WINDOWS-874', 
     52        'ISO88599'      => 'WINDOWS-1254', 
     53        'ISO885911'     => 'WINDOWS-874', 
     54        'MACROMAN'      => 'MACINTOSH', 
    5555        '77'            => 'MAC', 
    5656        '128'           => 'SHIFT-JIS', 
     
    337337                    } 
    338338 
    339                         $ch .= $u7; 
     339                    $ch .= $u7; 
    340340                } 
    341341 
     
    725725            else if ($ord >= 0xC0) { 
    726726                if (strlen($seq) > 1) { 
    727                         $out .= preg_match($regexp, $seq) ? $seq : ''; 
     727                    $out .= preg_match($regexp, $seq) ? $seq : ''; 
    728728                    $seq = ''; 
    729729                } 
  • program/include/rcube_ui.php

    r9870dac r1495ac7  
    830830     * Return html for a structured list &lt;ul&gt; for the mailbox tree 
    831831     */ 
    832     private static function render_folder_tree_html(&$arrFolders, &$mbox_name, &$jslist, $attrib, $nestLevel = 0) 
     832    public static function render_folder_tree_html(&$arrFolders, &$mbox_name, &$jslist, $attrib, $nestLevel = 0) 
    833833    { 
    834834        global $RCMAIL; 
     
    923923     * Return html for a flat list <select> for the mailbox tree 
    924924     */ 
    925     private static function render_folder_tree_select(&$arrFolders, &$mbox_name, $maxlength, &$select, $realnames = false, $nestLevel = 0, $opts = array()) 
     925    public static function render_folder_tree_select(&$arrFolders, &$mbox_name, $maxlength, &$select, $realnames = false, $nestLevel = 0, $opts = array()) 
    926926    { 
    927927        global $RCMAIL; 
Note: See TracChangeset for help on using the changeset viewer.