diff -r 1bc7e849a264 -r 91127e62f38f plugins/SpecialAdmin.php --- a/plugins/SpecialAdmin.php Sun Oct 07 17:22:25 2007 -0400 +++ b/plugins/SpecialAdmin.php Tue Oct 09 16:14:55 2007 -0400 @@ -3158,6 +3158,8 @@ $parser = $template->makeParserText($vars['sidebar_section']); $c = $template->tplWikiFormat($row['block_content'], false, 'sidebar-editor.tpl'); $c = preg_replace('#(.*?)#is', '\\2', $c); + // fix for the "Administration" link that somehow didn't get rendered properly + $c = preg_replace("/(^|\n)([ ]*)(.+)<\/a>()([\r\n]+|$)/isU", '\\1\\2
  • \\4
  • \\7', $c); break; case BLOCK_HTML: $parser = $template->makeParserText($vars['sidebar_section_raw']);