From d168c319238adc240b6d54b8422af23201295741 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Sun, 13 Apr 2008 14:18:22 +0000 Subject: [PATCH] Use the standard we've agreed upon for class names: prefixed with "mw-", words separated by hyphens. --- includes/Xml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Xml.php b/includes/Xml.php index 2c1e5314bb..e8ae75cb30 100644 --- a/includes/Xml.php +++ b/includes/Xml.php @@ -147,7 +147,7 @@ class Xml { $options[] = self::option( wfMsg( 'monthsall' ), $allmonths, $selected === $allmonths ); for( $i = 1; $i < 13; $i++ ) $options[] = self::option( $wgLang->getMonthName( $i ), $i, $selected === $i ); - return self::openElement( 'select', array( 'id' => $id, 'name' => 'month', 'class' => 'monthselector' ) ) + return self::openElement( 'select', array( 'id' => $id, 'name' => 'month', 'class' => 'mw-month-selector' ) ) . implode( "\n", $options ) . self::closeElement( 'select' ); } -- 2.20.1