From: <var...@us...> - 2014-06-12 15:44:03
|
Revision: 8896 http://sourceforge.net/p/phpwiki/code/8896 Author: vargenau Date: 2014-06-12 15:43:56 +0000 (Thu, 12 Jun 2014) Log Message: ----------- Use CSS Modified Paths: -------------- trunk/lib/diff.php trunk/lib/plugin/Diff.php Modified: trunk/lib/diff.php =================================================================== --- trunk/lib/diff.php 2014-06-12 15:39:51 UTC (rev 8895) +++ trunk/lib/diff.php 2014-06-12 15:43:56 UTC (rev 8896) @@ -203,7 +203,7 @@ { global $WikiTheme; - $row = HTML::tr(HTML::td(array('align' => 'right'), $label)); + $row = HTML::tr(HTML::td(array('class' => 'align-right'), $label)); if ($rev) { $author = $rev->get('author'); $dbi = $request->getDbh(); Modified: trunk/lib/plugin/Diff.php =================================================================== --- trunk/lib/plugin/Diff.php 2014-06-12 15:39:51 UTC (rev 8895) +++ trunk/lib/plugin/Diff.php 2014-06-12 15:43:56 UTC (rev 8896) @@ -54,7 +54,7 @@ global $WikiTheme; - $row = HTML::tr(HTML::td(array('align' => 'right'), $label)); + $row = HTML::tr(HTML::td(array('class' => 'align-right'), $label)); if ($rev) { $author = $rev->get('author'); $dbi = $request->getDbh(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |