Use the standard we've agreed upon for class names: prefixed with "mw-", words separa...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Sun, 13 Apr 2008 14:18:22 +0000 (14:18 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Sun, 13 Apr 2008 14:18:22 +0000 (14:18 +0000)
includes/Xml.php

index 2c1e531..e8ae75c 100644 (file)
@@ -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' );        
        }