*Should be greater than 0, not 1 ;)
authorAaron Schulz <aaron@users.mediawiki.org>
Sat, 23 Jun 2007 20:10:15 +0000 (20:10 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sat, 23 Jun 2007 20:10:15 +0000 (20:10 +0000)
includes/SpecialContributions.php

index eeed985..b5715c6 100644 (file)
@@ -21,7 +21,7 @@ class ContribsPager extends IndexPager {
                $month = intval($month);
                
                $this->year = ($year > 0 && $year < 10000) ? $year : false;
-               $this->month = ($month > 1 && $month < 13) ? $month : false;
+               $this->month = ($month > 0 && $month < 13) ? $month : false;
                $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
        }