From cd6b69e5b43d363e84f48bb8c6d4e288f5477135 Mon Sep 17 00:00:00 2001 From: Victor Vasiliev Date: Fri, 29 Aug 2008 20:27:25 +0000 Subject: [PATCH] As Raymond points out, there is a mw-submit class --- includes/Xml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ); } -- 2.20.1