*** empty log message ***

This commit is contained in:
duergner 2003-05-29 18:45:08 +00:00
parent e7a2aeda7d
commit 1e79c70b68
4 changed files with 7 additions and 6 deletions

View File

@ -29,7 +29,7 @@ $helpArray = array (
// for testing purposes
"0" => array ("ext" => "FALSE", "Headline" => _("Hilfetest 1"), "Text" => _("blablabla 1"), "SeeAlso" => "<a href=\"./help.php?HelpNumber=02\" target=\"_self\">02</a>"),
"02" => array ("ext" => "FALSE", "Headline" => _("Hilfetest 2"), "Text" => _("blablabla 2"), "SeeAlso" => ""),
"03" => array ("ext" => "TRUE", "Link" => "help/extFileExample.php"),
"03" => array ("ext" => "TRUE", "Link" => "extFileExample.php"),
// 200 - 299
// Roland Gruber
// configuration wizard
@ -93,8 +93,8 @@ $helpArray = array (
/* This is a sample help entry. Just copy this line an modify the vakues between the [] brackets.
Help text is located in the array:
"[Helpnumber]" => array ("ext" => "FALSE", "Headline" => _("[Headline]"), "Text" => _("[Text]"), "SeeAlso" => "[SeeAlso link]"),
Help text is located in an extra file; path must be relative to lam_root; File should be stored in help directory
"[Helpnumber]" => array ("ext" => "TRUE", "Link" => "[help/pathToFile]),
Help text is located in an extra file; File must be stored in help directory; Link has to be the path to the file if it is stored in a subdirectory and the filename with a leading slash;
"[Helpnumber]" => array ("ext" => "TRUE", "Link" => "[path/FileName]),
*/
);
?>

View File

@ -1,5 +1,5 @@
/*
This file contains a list of 100er blocks of help numbers. Each block can be unassigned or assigned to a developer. Each block description contains the name of the developer and the topic the help numbers a used for.
This file contains a list of 100er blocks of help numbers. Each block can be unassigned or assigned to a developer. Each block description contains the name of the developer and the topic the help numbers are used for.
If you are a developer and need a block of help numbers please contact Michael Dürgner <michael@duergner.com> ICQ-UIN:176796482.
@ -9,4 +9,5 @@ Help numbers should only be used if they are assigned in this file to avoid doub
0 - 99: any developer: for testing purposes
100 - 199: unassigend
200 - 299: Roland Gruber: configuration wizard, configuration login
300 - 399: Roland Gruber: profil editor
300 -: unassigned

View File

@ -47,7 +47,7 @@ function StatusMessage($MessageTyp, $MessageHeadline, $MessageText)
$class = "class=\"status_error\"";
$MessageTyp = _("LAM Internal Error");
$MessageHeadline = _("Invalid/Missing Message Typ");
$MessageText = _("Please report this error to the {link=mailto:lam-devel@sourceforge.net}LDAP Account Manager Development Team{endlink}. The error number is {bold}0001:Invalid/Missing Message Typ.{endbold} Thank you.");
$MessageText = _("Please report this error to the Bug-Tracker at {link=http://lam.sf.net}LDAP Account Manager Development Team{endlink}. The error number is {bold}0001:Invalid/Missing Message Typ.{endbold} Thank you.");
}
$MessageHeadline = parseMessageString($MessageHeadline);

View File

@ -87,7 +87,7 @@ function displayHelp($helpNumber)
elseif($helpArray[$helpNumber]["ext"] == "TRUE")
{
echoHTMLHead();
include_once("../" . $helpArray[$helpNumber]["Link"]);
include_once("../help/" . $helpArray[$helpNumber]["Link"]);
echoHTMLFoot();
}
/* Print empty page in all other cases */