changed some little things in data handling;
This commit is contained in:
parent
007949bba4
commit
afa7e8b8a3
|
@ -84,7 +84,7 @@ function displayHelp($helpEntry,$helpVariables) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If no help number was submitted print error message */
|
/* If no help number was submitted print error message */
|
||||||
if(!isset($_GET['HelpNumber']))
|
if(!isset($_GET['item']))
|
||||||
{
|
{
|
||||||
$errorMessage = _("Sorry no help number submitted.");
|
$errorMessage = _("Sorry no help number submitted.");
|
||||||
echoHTMLHead();
|
echoHTMLHead();
|
||||||
|
@ -95,9 +95,19 @@ if(!isset($_GET['HelpNumber']))
|
||||||
|
|
||||||
$helpEntry = array();
|
$helpEntry = array();
|
||||||
|
|
||||||
if(isset($_GET['Module'])) {
|
if(isset($_GET['module'])) {
|
||||||
include_once("../lib/modules.inc");
|
include_once("../lib/modules.inc");
|
||||||
$helpEntry = getHelp($_GET['Module'],$_GET['HelpNumber']);
|
$helpEntry = getHelp($_GET['module'],$_GET['item']);
|
||||||
|
if(!$helpEntry) {
|
||||||
|
$variables = array();
|
||||||
|
array_push($variables,$_GET['item']);
|
||||||
|
array_push($variables,$_GET['module']);
|
||||||
|
$errorMessage = _("Sorry this help id ({bold}%s{endbold}) is not available for this module ({bold}%s{endbold}).");
|
||||||
|
echoHTMLHead();
|
||||||
|
statusMessage("ERROR","",$errorMessage,$variables);
|
||||||
|
echoHTMLFoot();
|
||||||
|
exit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* If submitted help number is not in help/help.inc print error message */
|
/* If submitted help number is not in help/help.inc print error message */
|
||||||
|
|
Loading…
Reference in New Issue