diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 9a525bd3a3..e9ec37ade8 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2008-09-25 Ramon Novoa + + * general/pandora_help.php: Fixed bug #2119100. + 2008-09-25 Ramon Novoa * include/help/en/help_duplicateconfig.php, diff --git a/pandora_console/general/pandora_help.php b/pandora_console/general/pandora_help.php index 0988e15752..addf304043 100644 --- a/pandora_console/general/pandora_help.php +++ b/pandora_console/general/pandora_help.php @@ -26,6 +26,11 @@ echo ''; $id = get_parameter ('id'); $help_file = $config["homedir"]."/include/help/".$config["language"]."/help_".$id.".php"; +// Default to english +if (! file_exists ($help_file)) { + $help_file = $config["homedir"]."/include/help/en/help_".$id.".php"; +} + if (! $id || ! file_exists ($help_file)) { echo "
"; echo '

';