From cdeb746651c5251e64fa9868e4ad0a096b994c93 Mon Sep 17 00:00:00 2001 From: esanchezm Date: Thu, 21 Aug 2008 14:13:58 +0000 Subject: [PATCH] 2008-08-21 Esteban Sanchez * general/pandora_help.php: Added a require of a functions file. Added missing HTML tags. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1015 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/general/pandora_help.php | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 38e577f967..a33d6acb11 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2008-08-21 Esteban Sanchez + + * general/pandora_help.php: Added a require of a functions file. Added + missing HTML tags. + 2008-08-20 Evi Vanoost * godmode/profiles/profile_list.php: HTML overhaul (close tags, put diff --git a/pandora_console/general/pandora_help.php b/pandora_console/general/pandora_help.php index 86bb40f5ea..ce9e10bbfc 100644 --- a/pandora_console/general/pandora_help.php +++ b/pandora_console/general/pandora_help.php @@ -9,7 +9,11 @@ // as published by the Free Software Foundation for version 2. require_once ("../include/config.php"); +require_once ("../include/functions.php"); + +echo ''.__('Pandora FMS help system').''; echo ''; +echo ''; $id = get_parameter ('id'); $help_file = $config["homedir"]."/include/help/".$config["language"]."/help_".$id.".php"; @@ -29,7 +33,7 @@ if (! $id || ! file_exists ($help_file)) { /* Show help */ echo '
'; -echo '

Pandora FMS Help System

'; +echo '

'.__('Pandora FMS Help System').'

'; echo '
'; echo '
'; echo '
'; @@ -40,3 +44,5 @@ echo '


'; echo '
'; include ('footer.php'); ?> + +