diff --git a/lam/help/help.inc b/lam/help/help.inc index b091ccd5..69d08e09 100644 --- a/lam/help/help.inc +++ b/lam/help/help.inc @@ -98,8 +98,6 @@ $helpArray = array ( "Text" => _("This is the time in minutes which LAM caches its LDAP searches. Shorter times will stress LDAP more but decrease the possibility that changes are not identified.")), "215" => array ("Headline" => _("Access level"), "Text" => _("You can specify if LAM allows full write access, password changes or only read access.")), - "216" => array ("Headline" => _("Text for user PDF"), - "Text" => _("This text will appear on top of every user PDF file.")), "217" => array ("Headline" => _("Account types and modules"), "Text" => _("Here you can select which plugins you want to use for account management.") . "

" . _("Account types define which sorts of LDAP entries (e.g. users and groups) should be managed. The account modules define which properties (e.g. Unix and Samba) can be edited.")), @@ -159,6 +157,8 @@ $helpArray = array ( "Text" => _("Here you can select a PDF structure and export the account to a PDF file.")), "404" => array ("Headline" => _("Password"), "Text" => _("Please enter the password which you want to set for this account. You may also generate a random password (12 characters) which will be displayed on your screen.")), + "405" => array ("Headline" => _("PDF structure"), + "Text" => _("The PDF structure defines what information is exported as PDF file and how the pages are structured. You can manage the PDF structures in the PDF editor (under \"Tools\").")), // 500 - 599 // LAM Pro "501" => array ("Headline" => _("LDAP suffix"), diff --git a/lam/lib/lists.inc b/lam/lib/lists.inc index 7691a2d3..5fe7fb05 100644 --- a/lam/lib/lists.inc +++ b/lam/lib/lists.inc @@ -615,7 +615,7 @@ class lamList { $container = new htmlTable(); $container->addElement(new htmlSubTitle(_('Create PDF file')), true); - $container->addElement(new htmlTableExtendedSelect('pdf_structure', $pdf_structures, array('default'), _('PDF structure')), true); + $container->addElement(new htmlTableExtendedSelect('pdf_structure', $pdf_structures, array('default'), _('PDF structure'), '405'), true); $container->addElement(new htmlSpacer(null, '5px'), true); $container->addElement(new htmlOutputText(_('Create for'))); @@ -636,7 +636,7 @@ class lamList { $container->addElement(new htmlSpacer(null, '10px'), true); $buttonContainer = new htmlTable(); - $buttonContainer->colspan = 2; + $buttonContainer->colspan = 3; $buttonContainer->addElement(new htmlButton('createPDFok', _('Ok'))); $buttonContainer->addElement(new htmlButton('createPDFCancel', _('Cancel'))); $container->addElement($buttonContainer);