From: Roland Häder Date: Sat, 19 Dec 2009 10:05:21 +0000 (+0000) Subject: Admin/guest menu add fixed X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=01f61fde8c4a4e040dc089ccb274441859487e1d Admin/guest menu add fixed --- diff --git a/inc/classes/rdf.class.php b/inc/classes/rdf.class.php index 17de9f14c8..8233aba8cc 100644 --- a/inc/classes/rdf.class.php +++ b/inc/classes/rdf.class.php @@ -709,7 +709,7 @@ class fase4_rdf { // First remove all \n $this->_item['description'] = str_replace('\n', ' ', $this->_item['description']); // Wrap with
\n - $this->_item['description'] = wordwrap($this->_item['description'], $this->_word_wrap, "*
\n"); + $this->_item['description'] = wordwrap($this->_item['description'], $this->_word_wrap, "*
\n"); } elseif (($this->_word_wrap == '0') && (!$this->_use_nl2br)) { @@ -805,7 +805,7 @@ class fase4_rdf { if(isset($this->_link_target)) { $this->_output .= "target=\"".$this->_link_target."\" "; } $this->_output .= "method=\"get\">\n"; $this->_output .= "
".$this->_item['title']."
"; - $this->_output .= strip_tags($this->_item['description'], ', ')."

\n"; + $this->_output .= strip_tags($this->_item['description'], '
, ')."

\n"; $this->_output .= "_item['name']."\"> \n"; $this->_output .= ""; $this->_output .= "\n"; diff --git a/inc/language/de.php b/inc/language/de.php index 3bceaaacff..9548afc1e9 100644 --- a/inc/language/de.php +++ b/inc/language/de.php @@ -1088,7 +1088,7 @@ addMessages(array( 'ADMIN_RESET_PASS' => "Ihr Administratorkennwort zurücksetzen?", 'ADMIN_NO_LOGIN_WITH_EMAIL' => "Kein Administrator-Account mit der angegebenen Email-Adresse gefunden.", - 'ADMIN_RESET_PASS_LINK_SUBJ' => "Zuruecksetzung Ihres Admin-Passwortes", + 'ADMIN_RESET_PASS_LINK_SUBJ' => "Zurücksetzung Ihres Admin-Passwortes", 'ADMIN_RESET_LINK_SENT' => "Der Reset-Link wurde soeben an Ihre eingegebene Email-Adresse ausgesendet.", 'ADMIN_VALIDATION_RESET_LOGIN_HASH_FAILED' => "Validierung Ihrer Logindaten fehlgeschlagen. Haben Sie auch den Link aus der Mail angeklickt und Ihren Loginnamen eingegeben?", 'ADMIN_VALIDATION_RESET_LOGIN_HASH_FAILED2' => "Validierung Ihrer Logindaten fehlgeschlagen. Es liegt ein Bug im Script vor. Bitte im
Bug-Tracker den Fehler melden.", diff --git a/inc/modules/admin/what-admin_add.php b/inc/modules/admin/what-admin_add.php index 272d4bd6e3..566a45aedc 100644 --- a/inc/modules/admin/what-admin_add.php +++ b/inc/modules/admin/what-admin_add.php @@ -156,8 +156,8 @@ if (!isFormSent()) { // Prepare selections for template $content['below_selection'] = $OUT; - $content['what_selection'] = adminAddMenuSelectionBox('member', 'what' , 'name'); - $content['action_selection'] = adminAddMenuSelectionBox('member', 'action', 'menu'); + $content['what_selection'] = adminAddMenuSelectionBox('admin', 'what' , 'name'); + $content['action_selection'] = adminAddMenuSelectionBox('admin', 'action', 'menu'); // Display form loadTemplate('admin_admin_add', false, $content); diff --git a/inc/modules/admin/what-guest_add.php b/inc/modules/admin/what-guest_add.php index 1728bdd498..009ebdce98 100644 --- a/inc/modules/admin/what-guest_add.php +++ b/inc/modules/admin/what-guest_add.php @@ -174,8 +174,8 @@ ORDER BY `sort` ASC", // Prepare selections for template $content['below_selection'] = $OUT; - $content['what_selection'] = adminAddMenuSelectionBox('member', 'what' , 'name'); - $content['action_selection'] = adminAddMenuSelectionBox('member', 'action', 'menu'); + $content['what_selection'] = adminAddMenuSelectionBox('guest', 'what' , 'name'); + $content['action_selection'] = adminAddMenuSelectionBox('guest', 'action', 'menu'); // Display form loadTemplate('admin_guest_add', false, $content);