Fixing the month names - e.g. use 'january', not 'january-gen', in the months list.
authorRotem Liss <rotem@users.mediawiki.org>
Mon, 25 Jun 2007 10:07:36 +0000 (10:07 +0000)
committerRotem Liss <rotem@users.mediawiki.org>
Mon, 25 Jun 2007 10:07:36 +0000 (10:07 +0000)
includes/Xml.php

index 88f8351..c31a077 100644 (file)
@@ -135,7 +135,7 @@ class Xml {
                if( is_null( $selected ) )
                        $selected = '';
                $s = "\n<select id='month' name='month' class='monthselector'>\n";
-               $arr = Language::$mMonthGenMsgs;
+               $arr = Language::$mMonthMsgs;
                
                if( !is_null($allmonths) ) {
                        $arr = array($allmonths => 'monthsall') + $arr;