Skip to content
Snippets Groups Projects
Commit 0cb422a2 authored by chris's avatar chris
Browse files

plugin info fix - correct strtr parameters

darcs-hash:20050914115643-50fdc-df95b6d9464a1e49e16c69b84b389eb10f08a8b7.gz
parent 59f257ae
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ class syntax_plugin_info extends DokuWiki_Syntax_Plugin {
$renderer->doc .= ' ';
$renderer->emaillink($info['email'],$info['author']);
$renderer->doc .= '<br />';
$renderer->doc .= strtr(htmlspecialchars($info['desc']),array("\n","<br />"));
$renderer->doc .= strtr(htmlspecialchars($info['desc']),array("\n"=>"<br />"));
$renderer->doc .= '</li>';
unset($po);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment