From: <var...@us...> - 2014-06-13 15:48:26
|
Revision: 8914 http://sourceforge.net/p/phpwiki/code/8914 Author: vargenau Date: 2014-06-13 15:48:23 +0000 (Fri, 13 Jun 2014) Log Message: ----------- Use CSS Modified Paths: -------------- trunk/lib/plugin/RecentReferrers.php trunk/lib/plugin/WantedPagesOld.php Modified: trunk/lib/plugin/RecentReferrers.php =================================================================== --- trunk/lib/plugin/RecentReferrers.php 2014-06-13 15:31:36 UTC (rev 8913) +++ trunk/lib/plugin/RecentReferrers.php 2014-06-13 15:48:23 UTC (rev 8914) @@ -53,7 +53,7 @@ $args = $this->getArgs($argstr, $request); $table = HTML::table(array('class' => 'pagelist')); if (!$args['noheader'] and !empty($args['caption'])) - $table->pushContent(HTML::caption(array('align' => 'top'), $args['caption'])); + $table->pushContent(HTML::caption(array('style' => 'caption-side:top'), $args['caption'])); $limit = $args['limit']; $accesslog =& $request->_accesslog; if ($logiter = $accesslog->get_referer($limit, "external_only") Modified: trunk/lib/plugin/WantedPagesOld.php =================================================================== --- trunk/lib/plugin/WantedPagesOld.php 2014-06-13 15:31:36 UTC (rev 8913) +++ trunk/lib/plugin/WantedPagesOld.php 2014-06-13 15:48:23 UTC (rev 8914) @@ -153,7 +153,7 @@ if (count($this->pagelist) > 0) { $table = HTML::table(array('class' => 'pagelist')); if ($caption) - $table->pushContent(HTML::caption(array('align' => 'top'), + $table->pushContent(HTML::caption(array('style' => 'caption-side:top'), $caption)); $row = HTML::tr(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |