summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 36a75b7)
raw | patch | inline | side by side (parent: 36a75b7)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 28 Nov 2005 11:44:33 +0000 (11:44 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 28 Nov 2005 11:44:33 +0000 (11:44 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2101 594d385d-05f5-0310-b6e9-bd551577e9d8
html/helpviewer.php | patch | blob | history |
diff --git a/html/helpviewer.php b/html/helpviewer.php
index 0f0c168056de74dfed575d2165427495deae466c..f307564c3ff83cbcc8b61da77af286df522a0762 100644 (file)
--- a/html/helpviewer.php
+++ b/html/helpviewer.php
$smarty->assign("help_contents","<br><h2>"._("There is no helpfile specified for this class."))."</h2>";
$header= "<!-- headers.tpl-->".$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();
/* There was a file requested which actually doesn't exists */
$smarty->assign("help_contents","<h2>".sprintf(_("Helpdir '%s' is not accessible, can't read any helpfiles."),$helpdir))."</h2><br>";
$header= "<!-- headers.tpl-->".$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: