From: <var...@us...> - 2012-12-11 15:54:52
|
Revision: 8647 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8647&view=rev Author: vargenau Date: 2012-12-11 15:54:41 +0000 (Tue, 11 Dec 2012) Log Message: ----------- HTML::raw Modified Paths: -------------- trunk/lib/plugin/RecentComments.php trunk/lib/plugin/RecentReferrers.php trunk/lib/plugin/WikiAdminUtils.php Modified: trunk/lib/plugin/RecentComments.php =================================================================== --- trunk/lib/plugin/RecentComments.php 2012-12-11 15:48:55 UTC (rev 8646) +++ trunk/lib/plugin/RecentComments.php 2012-12-11 15:54:41 UTC (rev 8647) @@ -98,7 +98,9 @@ function format_revision($rev) { static $doublettes = array(); - if (isset($doublettes[$rev->getPageName()])) return; + if (isset($doublettes[$rev->getPageName()])) { + return HTML::raw(''); + } $doublettes[$rev->getPageName()] = 1; $args = &$this->_args; $class = 'rc-' . $this->importance($rev); Modified: trunk/lib/plugin/RecentReferrers.php =================================================================== --- trunk/lib/plugin/RecentReferrers.php 2012-12-11 15:48:55 UTC (rev 8646) +++ trunk/lib/plugin/RecentReferrers.php 2012-12-11 15:54:41 UTC (rev 8647) @@ -62,7 +62,6 @@ 'class' => 'pagelist')); if (!$args['noheader'] and !empty($args['caption'])) $table->pushContent(HTML::caption(array('align' => 'top'), $args['caption'])); - $logs = array(); $limit = $args['limit']; $accesslog =& $request->_accesslog; if ($logiter = $accesslog->get_referer($limit, "external_only") @@ -79,6 +78,7 @@ } return $table; } + return HTML::raw(''); } } Modified: trunk/lib/plugin/WikiAdminUtils.php =================================================================== --- trunk/lib/plugin/WikiAdminUtils.php 2012-12-11 15:48:55 UTC (rev 8646) +++ trunk/lib/plugin/WikiAdminUtils.php 2012-12-11 15:54:41 UTC (rev 8647) @@ -304,7 +304,7 @@ $pagelist->_generateTable(false), HTML::p(Button('submit:', _("Change Verification Status"), 'wikiadmin'), - HTML::Raw(' '), + HTML::raw(' '), Button('cancel', _("Cancel"))) ); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |