From: Aryeh Gregor Date: Sun, 13 Apr 2008 14:18:22 +0000 (+0000) Subject: Use the standard we've agreed upon for class names: prefixed with "mw-", words separa... X-Git-Tag: 1.31.0-rc.0~48383 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=d168c319238adc240b6d54b8422af23201295741;p=lhc%2Fweb%2Fwiklou.git Use the standard we've agreed upon for class names: prefixed with "mw-", words separated by hyphens. --- 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' ); }