responsive design

This commit is contained in:
Roland Gruber 2018-05-31 09:11:05 +02:00
parent e2e75ece20
commit 4940ba069f
1 changed files with 13 additions and 14 deletions

View File

@ -63,12 +63,14 @@ include_once("../help/help.inc"); // Include help/help.inc which provides $helpA
*/ */
function echoHTMLHead() { function echoHTMLHead() {
echo $_SESSION['header']; echo $_SESSION['header'];
$title = "LDAP Account Manager Help";
printHeaderContents($title, '..');
?> ?>
<title>LDAP Account Manager Help Center</title>
<link rel="stylesheet" type="text/css" href="../style/500_layout.css">
</head> </head>
<body> <body class="admin">
<?php <?php
// include all JavaScript files
printJsIncludes('..');
} }
/** /**
@ -121,9 +123,7 @@ if(isset($_GET['module']) && !($_GET['module'] == 'main') && !($_GET['module'] =
$helpEntry = getHelp($_GET['module'],$_GET['HelpNumber']); $helpEntry = getHelp($_GET['module'],$_GET['HelpNumber']);
} }
if (!$helpEntry) { if (!$helpEntry) {
$variables = array(); $variables = array(htmlspecialchars($_GET['HelpNumber']), htmlspecialchars($_GET['module']));
array_push($variables, htmlspecialchars($_GET['HelpNumber']));
array_push($variables, htmlspecialchars($_GET['module']));
$errorMessage = _("Sorry this help id ({bold}%s{endbold}) is not available for this module ({bold}%s{endbold})."); $errorMessage = _("Sorry this help id ({bold}%s{endbold}) is not available for this module ({bold}%s{endbold}).");
echoHTMLHead(); echoHTMLHead();
statusMessage("ERROR", "", $errorMessage, $variables); statusMessage("ERROR", "", $errorMessage, $variables);
@ -135,8 +135,7 @@ if(isset($_GET['module']) && !($_GET['module'] == 'main') && !($_GET['module'] =
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 */
if (!array_key_exists($_GET['HelpNumber'],$helpArray)) { if (!array_key_exists($_GET['HelpNumber'],$helpArray)) {
$variables = array(); $variables = array(htmlspecialchars($_GET['HelpNumber']));
array_push($variables, htmlspecialchars($_GET['HelpNumber']));
$errorMessage = _("Sorry this help number ({bold}%s{endbold}) is not available."); $errorMessage = _("Sorry this help number ({bold}%s{endbold}) is not available.");
echoHTMLHead(); echoHTMLHead();
statusMessage("ERROR", "", $errorMessage, $variables); statusMessage("ERROR", "", $errorMessage, $variables);