From: Andrew Garrett Date: Fri, 27 Jun 2008 07:22:21 +0000 (+0000) Subject: Use class=mw_label instead of valign and align X-Git-Tag: 1.31.0-rc.0~46872 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28?a=commitdiff_plain;h=ff32fc15cfc5b08525e4a91faa5d12bf3d1735c6;p=lhc%2Fweb%2Fwiklou.git Use class=mw_label instead of valign and align --- diff --git a/includes/Xml.php b/includes/Xml.php index 4feff6d22a..8a1ad27f6d 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -638,7 +638,7 @@ class Xml { $id = "mw-$labelmsg"; $form .= Xml::openElement( 'tr', array( 'id' => $id ) ); - $form .= Xml::tags( 'td', array('valign'=>'top','align' => 'right'), wfMsgExt( $labelmsg, array('parseinline') ) ); + $form .= Xml::tags( 'td', array('class' => 'mw-label'), wfMsgExt( $labelmsg, array('parseinline') ) ); $form .= Xml::openElement( 'td' ) . $input . Xml::closeElement( 'td' ); $form .= Xml::closeElement( 'tr' ); }