From 301efb80c51ed90ec89c2c38cd5082e21519eef7 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 28 Nov 2005 11:44:33 +0000 Subject: [PATCH] Fixed encoding git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2101 594d385d-05f5-0310-b6e9-bd551577e9d8 --- html/helpviewer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/helpviewer.php b/html/helpviewer.php index 0f0c16805..f307564c3 100644 --- a/html/helpviewer.php +++ b/html/helpviewer.php @@ -112,7 +112,7 @@ if(isset($_SESSION['current_class_for_help'])){ $smarty->assign("help_contents","

"._("There is no helpfile specified for this class."))."

"; $header= "".$smarty->fetch(get_template_path('headers.tpl')); - $display= utf8_encode( $header.$smarty->fetch(get_template_path('help.tpl'))); + $display= ( $header.$smarty->fetch(get_template_path('help.tpl'))); echo $display; unset($_SESSION['current_class_for_help']); exit(); @@ -222,7 +222,7 @@ if(isset($_POST['search'])){ /* There was a file requested which actually doesn't exists */ $smarty->assign("help_contents","

".sprintf(_("Helpdir '%s' is not accessible, can't read any helpfiles."),$helpdir))."


"; $header= "".$smarty->fetch(get_template_path('headers.tpl')); - $display= utf8_encode( $header.$smarty->fetch(get_template_path('help.tpl'))); + $display= ( $header.$smarty->fetch(get_template_path('help.tpl'))); echo $display; } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: -- 2.30.2