Changeset eebd447 in github


Ignore:
Timestamp:
May 17, 2012 4:48:18 AM (12 months ago)
Author:
Aleksander Machniak <alec@…>
Branches:
master, HEAD, dev-browser-capabilities, pdo
Children:
19cc5b9
Parents:
9843dc7
Message:

s/rcube_charset_convert/rcube_charset::convert/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_mime.php

    rbe98dfc2 reebd447  
    215215                if ($start != $pos) { 
    216216                    $substr = substr($input, $start, $pos-$start); 
    217                     $out   .= rcube_charset_convert($substr, $default_charset); 
     217                    $out   .= rcube_charset::convert($substr, $default_charset); 
    218218                    $start  = $pos; 
    219219                } 
     
    256256                } 
    257257 
    258                 $out .= rcube_charset_convert($text, $charset); 
     258                $out .= rcube_charset::convert($text, $charset); 
    259259                $tmp = array(); 
    260260            } 
     
    262262            // add the last part of the input string 
    263263            if ($start != strlen($input)) { 
    264                 $out .= rcube_charset_convert(substr($input, $start), $default_charset); 
     264                $out .= rcube_charset::convert(substr($input, $start), $default_charset); 
    265265            } 
    266266 
     
    270270 
    271271        // no encoding information, use fallback 
    272         return rcube_charset_convert($input, $default_charset); 
     272        return rcube_charset::convert($input, $default_charset); 
    273273    } 
    274274 
Note: See TracChangeset for help on using the changeset viewer.