// First remove all \n
$this->_item['description'] = str_replace('\n', ' ', $this->_item['description']);
// Wrap with <br />\n
- $this->_item['description'] = wordwrap($this->_item['description'], $this->_word_wrap, "*<br>\n");
+ $this->_item['description'] = wordwrap($this->_item['description'], $this->_word_wrap, "*<br />\n");
}
elseif (($this->_word_wrap == '0') && (!$this->_use_nl2br))
{
if(isset($this->_link_target)) { $this->_output .= "target=\"".$this->_link_target."\" "; }
$this->_output .= "method=\"get\">\n";
$this->_output .= "<div class=\"fase4_rdf_title\">".$this->_item['title']."</div>";
- $this->_output .= strip_tags($this->_item['description'], '<a>, <img>')."<br><br>\n";
+ $this->_output .= strip_tags($this->_item['description'], '<a>, <img>')."<br /><br />\n";
$this->_output .= "<input class=\"fase4_rdf_input\" type=\"text\" name=\"".$this->_item['name']."\"> \n";
$this->_output .= "<input class=\"fase4_rdf_input\" type=\"submit\" value=\"go\">";
$this->_output .= "</form>\n";
'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 <a href=\"http://bugs.mxchange.org\" target=\"_blank\" title=\"Direktlink zum Bug-Tracker\">Bug-Tracker</a> den Fehler melden.",
// 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);
// 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);