From: cajus Date: Tue, 7 Jun 2005 11:49:35 +0000 (+0000) Subject: Fixed typo X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=744d5ffae622267343b902ec7e919df05e91c8d5;p=gosa.git Fixed typo git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@613 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/html/helpviewer.php b/html/helpviewer.php index d2f1e708e..db6277ca5 100644 --- a/html/helpviewer.php +++ b/html/helpviewer.php @@ -61,7 +61,10 @@ textdomain($domain); /* Get plugin list */ $plist= $_SESSION['plist']; -echo "Help..."; +/* Fill page */ +$header= "".$smarty->fetch(get_template_path('headers.tpl')); +$display= $header.$smarty->fetch(get_template_path('help.tpl')); +echo $display; // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> diff --git a/html/index.php b/html/index.php index 6ce9e7f49..d241be351 100644 --- a/html/index.php +++ b/html/index.php @@ -239,9 +239,9 @@ if (isset($_SESSION['errors'])){ $smarty->assign("errors", $_SESSION['errors']); } if ($error_collector != ""){ - $smarty->assign("php_error", $error_collector.""); + $smarty->assign("php_errors", $error_collector.""); } else { - $smarty->assign("php_error", ""); + $smarty->assign("php_errors", ""); } $smarty->display (get_template_path('login.tpl')); diff --git a/html/main.php b/html/main.php index 99746264a..ed76758fa 100644 --- a/html/main.php +++ b/html/main.php @@ -212,7 +212,7 @@ if ($_SESSION['js']==FALSE){ $smarty->assign("help_method", "href='helpviewer.php$plug' target='_new'"); } else { $smarty->assign("javascript", "true"); - $smarty->assign("help_method", "href='' onClick=\"window.open('helpviewer.php$plug','{t}GOsa help{/t}','width=600,height=700')\""); + $smarty->assign("help_method", "href='' onClick=\"window.open('helpviewer.php$plug','{t}GOsa help{/t}','width=600,height=700,location=no,toolbar=no,directories=no,menubar=no,status=no')\""); } $smarty->assign ("username", $ui->username); $smarty->assign ("go_logo", get_template_path('images/go_logo.png'));