From: <var...@us...> - 2009-01-23 13:47:13
|
Revision: 6433 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6433&view=rev Author: vargenau Date: 2009-01-23 13:47:05 +0000 (Fri, 23 Jan 2009) Log Message: ----------- Use tt instead of pre for inline nowiki Modified Paths: -------------- trunk/lib/InlineParser.php Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2009-01-23 13:22:51 UTC (rev 6432) +++ trunk/lib/InlineParser.php 2009-01-23 13:47:05 UTC (rev 6433) @@ -919,7 +919,7 @@ function markup ($match) { // Remove {{{ and }}} - return new HtmlElement('pre', substr($match, 3, -3)); + return new HtmlElement('tt', substr($match, 3, -3)); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |