From: <var...@us...> - 2012-12-12 14:29:00
|
Revision: 8658 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8658&view=rev Author: vargenau Date: 2012-12-12 14:28:54 +0000 (Wed, 12 Dec 2012) Log Message: ----------- Less space: HTML::p --> HTML::span Modified Paths: -------------- trunk/lib/loadsave.php Modified: trunk/lib/loadsave.php =================================================================== --- trunk/lib/loadsave.php 2012-12-12 10:38:49 UTC (rev 8657) +++ trunk/lib/loadsave.php 2012-12-12 14:28:54 UTC (rev 8658) @@ -966,10 +966,10 @@ $page->set($key, $value); } - $mesg = HTML::p(); - if ($source) + $mesg = HTML::span(); + if ($source) { $mesg->pushContent(' ', fmt("from “%s”", $source)); - + } if (!$current) { //FIXME: This should not happen! (empty vdata, corrupt cache or db) $current = $page->getCurrentRevision(); @@ -1060,7 +1060,7 @@ if (!isa($request, 'MockRequest')) { if ($skip) - PrintXML(HTML::p(HTML::em(WikiLink($pagename))), $mesg); + PrintXML(HTML::em(WikiLink($pagename)), $mesg); else PrintXML($mesg); flush(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |