From: Victor Vasiliev Date: Fri, 29 Aug 2008 20:27:25 +0000 (+0000) Subject: As Raymond points out, there is a mw-submit class X-Git-Tag: 1.31.0-rc.0~45555 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=cd6b69e5b43d363e84f48bb8c6d4e288f5477135;p=lhc%2Fweb%2Fwiklou.git As Raymond points out, there is a mw-submit class --- diff --git a/includes/Xml.php b/includes/Xml.php index f7e4d57ae9..005428ef99 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -647,7 +647,7 @@ class Xml { if( $submitLabel ) { $form .= Xml::openElement( 'tr', array( 'id' => $id ) ); $form .= Xml::tags( 'td', array(), '' ); - $form .= Xml::openElement( 'td', array( 'class' => 'mw-input' ) ) . Xml::submitButton( wfMsg( $submitLabel ) ) . Xml::closeElement( 'td' ); + $form .= Xml::openElement( 'td', array( 'class' => 'mw-submit' ) ) . Xml::submitButton( wfMsg( $submitLabel ) ) . Xml::closeElement( 'td' ); $form .= Xml::closeElement( 'tr' ); }