# HG changeset patch # User Dan # Date 1261191835 18000 # Node ID 5d33f9511995637ea984726bb30e84aeccfbcf07 # Parent 774ae986fded75320b775460f441157c27781151 Last minute fix to wikitext code tag diff -r 774ae986fded -r 5d33f9511995 includes/wikiengine/render_xhtml.php --- a/includes/wikiengine/render_xhtml.php Fri Dec 18 22:00:02 2009 -0500 +++ b/includes/wikiengine/render_xhtml.php Fri Dec 18 22:03:55 2009 -0500 @@ -159,7 +159,7 @@ public function code($match) { - return '
' . htmlspecialchars($match[0]) . '
'; + return '
' . htmlspecialchars($match[1]) . '
'; } }