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'); ?> + +