*** empty log message ***

This commit is contained in:
duergner 2004-04-14 20:13:12 +00:00
parent 6979caa825
commit 25fb2f0253
1 changed files with 3 additions and 2 deletions

View File

@ -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']);
} }