Merge "(bug 39956) MediaWiki's info action should vertically align cell values to...
authorIAlex <ialex.wiki@gmail.com>
Fri, 7 Sep 2012 17:01:46 +0000 (17:01 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 7 Sep 2012 17:01:46 +0000 (17:01 +0000)
includes/actions/InfoAction.php

index 6c21306..9e5cd99 100644 (file)
@@ -478,7 +478,7 @@ class InfoAction extends FormlessAction {
         */
        protected function addRow( $table, $name, $value ) {
                return $table . Html::rawElement( 'tr', array(),
-                       Html::rawElement( 'td', array(), $name ) .
+                       Html::rawElement( 'td', array( 'valign' => 'top' ), $name ) .
                        Html::rawElement( 'td', array(), $value )
                );
        }