summaryrefslogtreecommitdiff
path: root/program/include/rcube_shared.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-11-09 19:06:37 +0000
committerthomascube <thomas@roundcube.net>2006-11-09 19:06:37 +0000
commit674a0fb41dc80c7d1a99339481339ac6e5f75004 (patch)
treebace6691325da4b5a8fab713e6bcbeb780434044 /program/include/rcube_shared.inc
parent03ac2132e2962755e4359f8a5ab3ffcee36c13b1 (diff)
Corrected template parsing and output encoding
Diffstat (limited to 'program/include/rcube_shared.inc')
-rw-r--r--program/include/rcube_shared.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc
index 11af48205..7f3771b08 100644
--- a/program/include/rcube_shared.inc
+++ b/program/include/rcube_shared.inc
@@ -215,7 +215,8 @@ class rcube_html_page
if(($fpos = strrpos($output_lc, '</body>')) ||
($fpos = strrpos($output_lc, '</html>')))
{
- $output = substr($output,0,$fpos) . "$__page_footer\n" . substr($output,$fpos,strlen($output));
+ $fpos -= 8;
+ $output = substr($output,0,$fpos) . "$__page_footer\n" . substr($output,$fpos);
}
else
$output .= "\n$__page_footer";