From: <var...@us...> - 2014-06-04 13:46:30
|
Revision: 8868 http://sourceforge.net/p/phpwiki/code/8868 Author: vargenau Date: 2014-06-04 13:46:26 +0000 (Wed, 04 Jun 2014) Log Message: ----------- Use CSS Modified Paths: -------------- trunk/lib/plugin/AuthorHistory.php Modified: trunk/lib/plugin/AuthorHistory.php =================================================================== --- trunk/lib/plugin/AuthorHistory.php 2014-06-04 13:41:05 UTC (rev 8867) +++ trunk/lib/plugin/AuthorHistory.php 2014-06-04 13:46:26 UTC (rev 8868) @@ -105,7 +105,7 @@ if (!($page == 'all')) { $p = $dbi->getPage($page); - $thead->pushContent(HTML::tr(HTML::th(array('align' => 'right'), + $thead->pushContent(HTML::tr(HTML::th(array('class' => 'align-right'), _("Version")), $includeminor ? HTML::th(_("Minor")) : "", HTML::th(_("Author")), @@ -123,13 +123,13 @@ $difflink = Button(array('action' => 'diff', 'previous' => 'minor'), $rev->getversion(), $rev); - $tr = HTML::tr(HTML::td(array('align' => 'right'), + $tr = HTML::tr(HTML::td(array('class' => 'align-right'), $difflink, $nbsp), $includeminor ? (HTML::td($nbsp, ($isminor ? "minor" : "major"), $nbsp)) : "", HTML::td($nbsp, WikiLink($rev->get('author'), 'if_known'), $nbsp), HTML::td($nbsp, $rev->get('summary')), - HTML::td(array('align' => 'right'), + HTML::td(array('class' => 'align-right'), $WikiTheme->formatdatetime($rev->get('mtime'))) ); @@ -147,7 +147,7 @@ //search all pages for all edits by this author $thead->pushContent(HTML::tr(HTML::th(_("Page Name")), - HTML::th(array('align' => 'right'), + HTML::th(array('class' => 'align-right'), _("Version")), $includeminor ? HTML::th(_("Minor")) : "", HTML::th(_("Summary")), @@ -169,11 +169,11 @@ HTML::td($nbsp, ($isminor ? $rev->_pagename : WikiLink($rev->_pagename, 'auto')) ), - HTML::td(array('align' => 'right'), + HTML::td(array('class' => 'align-right'), $difflink, $nbsp), $includeminor ? (HTML::td($nbsp, ($isminor ? "minor" : "major"), $nbsp)) : "", HTML::td($nbsp, $rev->get('summary')), - HTML::td(array('align' => 'right'), + HTML::td(array('class' => 'align-right'), $WikiTheme->formatdatetime($rev->get('mtime')), $nbsp) ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |