Changeset 445 in subversion


Ignore:
Timestamp:
Jan 3, 2007 4:39:41 PM (6 years ago)
Author:
thomasb
Message:

Fixed template parsing (multibyte substring issues)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_shared.inc

    r440 r445  
    218218    if(($fpos = strrstr($output_lc, '</body>')) || 
    219219       ($fpos = strrstr($output_lc, '</html>'))) 
    220       $output = rc_substr($output,0,$fpos) . "$__page_footer\n" . rc_substr($output,$fpos); 
     220      $output = substr($output, 0, $fpos) . "$__page_footer\n" . substr($output, $fpos); 
    221221    else 
    222222      $output .= "\n$__page_footer"; 
Note: See TracChangeset for help on using the changeset viewer.