*** empty log message ***
This commit is contained in:
parent
6979caa825
commit
25fb2f0253
|
@ -1,3 +1,4 @@
|
||||||
|
#!/usr/bin/php
|
||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
$Id$
|
$Id$
|
||||||
|
@ -74,7 +75,7 @@ function displayHelp($helpEntry,$helpVariables) {
|
||||||
call_user_func_array("printf",$helpVariables);
|
call_user_func_array("printf",$helpVariables);
|
||||||
while($current = current($helpEntry["SeeAlso"]))
|
while($current = current($helpEntry["SeeAlso"]))
|
||||||
{
|
{
|
||||||
echo " <p class=\"help\">" . ((isset($current['link']) ? "<a class=\"helpSeeAlso\" href=\"" . $current['link']"\">" : "") . _("See also") . ": " . $current['text'] . ((isset($current['link'])) ? "</a>" : "") . "</p>\n";
|
echo ' <p class="help">' . (( isset($current['link'])) ? '<a class="helpSeeAlso" href="' . $current['link'] . '">' : '') . _('See also') . ': ' . $current['text'] . (( isset($current['link'])) ? '</a>' : '') . '</p>\n';
|
||||||
next($helpEntry["SeeAlso"]);
|
next($helpEntry["SeeAlso"]);
|
||||||
}
|
}
|
||||||
echoHTMLFoot();
|
echoHTMLFoot();
|
||||||
|
@ -93,7 +94,7 @@ 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['HelpNumber']);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue