Changeset eebd447 in github
- Timestamp:
- May 17, 2012 4:48:18 AM (12 months ago)
- Branches:
- master, HEAD, dev-browser-capabilities, pdo
- Children:
- 19cc5b9
- Parents:
- 9843dc7
- File:
-
- 1 edited
-
program/include/rcube_mime.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_mime.php
rbe98dfc2 reebd447 215 215 if ($start != $pos) { 216 216 $substr = substr($input, $start, $pos-$start); 217 $out .= rcube_charset _convert($substr, $default_charset);217 $out .= rcube_charset::convert($substr, $default_charset); 218 218 $start = $pos; 219 219 } … … 256 256 } 257 257 258 $out .= rcube_charset _convert($text, $charset);258 $out .= rcube_charset::convert($text, $charset); 259 259 $tmp = array(); 260 260 } … … 262 262 // add the last part of the input string 263 263 if ($start != strlen($input)) { 264 $out .= rcube_charset _convert(substr($input, $start), $default_charset);264 $out .= rcube_charset::convert(substr($input, $start), $default_charset); 265 265 } 266 266 … … 270 270 271 271 // no encoding information, use fallback 272 return rcube_charset _convert($input, $default_charset);272 return rcube_charset::convert($input, $default_charset); 273 273 } 274 274
Note: See TracChangeset
for help on using the changeset viewer.
