From: hickert Date: Mon, 28 Nov 2005 11:44:33 +0000 (+0000) Subject: Fixed encoding X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=301efb80c51ed90ec89c2c38cd5082e21519eef7;p=gosa.git Fixed encoding git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2101 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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: