http://www.mediawiki.org/wiki/Special:Code/MediaWiki/97562

Revision: 97562
Author:   reedy
Date:     2011-09-19 21:30:10 +0000 (Mon, 19 Sep 2011)
Log Message:
-----------
Applying styles to the correct table builder code probably helps

Modified Paths:
--------------
    trunk/extensions/OpenStackManager/special/SpecialNovaKey.php

Modified: trunk/extensions/OpenStackManager/special/SpecialNovaKey.php
===================================================================
--- trunk/extensions/OpenStackManager/special/SpecialNovaKey.php        
2011-09-19 21:25:57 UTC (rev 97561)
+++ trunk/extensions/OpenStackManager/special/SpecialNovaKey.php        
2011-09-19 21:30:10 UTC (rev 97562)
@@ -198,7 +198,7 @@
                        $keysOut .= Html::element( 'th', array(), wfMsg( 
'openstackmanager-keys' ) );
                        $keysOut .= Html::element( 'th', array(), wfMsg( 
'openstackmanager-actions' ) );
                        foreach ( $keypairs as $hash => $key ) {
-                               $keyOut = Html::element( 'td', array(), $key );
+                               $keyOut = Html::element( 'td', array( 'class' 
=> 'Nova_col' ), $key );
                                $msg = wfMsgHtml( 'openstackmanager-delete' );
                                $link = $sk->link( $this->getTitle(), $msg, 
array(), array( 'action' => 'delete', 'hash' => $hash ) );
                                $action = Html::rawElement( 'li', array(), 
$link );


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to