Changeset 1495ac7 in github
- Timestamp:
- Apr 14, 2012 7:15:28 AM (13 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo
- Children:
- 831c830
- Parents:
- 9870dac
- Location:
- program/include
- Files:
-
- 2 edited
-
rcube_charset.php (modified) (3 diffs)
-
rcube_ui.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_charset.php
r66d2152 r1495ac7 45 45 'USERDEFINED' => 'ISO-8859-15', 46 46 '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', 55 55 '77' => 'MAC', 56 56 '128' => 'SHIFT-JIS', … … 337 337 } 338 338 339 $ch .= $u7;339 $ch .= $u7; 340 340 } 341 341 … … 725 725 else if ($ord >= 0xC0) { 726 726 if (strlen($seq) > 1) { 727 $out .= preg_match($regexp, $seq) ? $seq : '';727 $out .= preg_match($regexp, $seq) ? $seq : ''; 728 728 $seq = ''; 729 729 } -
program/include/rcube_ui.php
r9870dac r1495ac7 830 830 * Return html for a structured list <ul> for the mailbox tree 831 831 */ 832 p rivatestatic 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) 833 833 { 834 834 global $RCMAIL; … … 923 923 * Return html for a flat list <select> for the mailbox tree 924 924 */ 925 p rivatestatic 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()) 926 926 { 927 927 global $RCMAIL;
Note: See TracChangeset
for help on using the changeset viewer.
