Index: trunk/phase3/includes/SpecialContributions.php |
— | — | @@ -21,7 +21,7 @@ |
22 | 22 | $month = intval($month); |
23 | 23 | |
24 | 24 | $this->year = ($year > 0 && $year < 10000) ? $year : false; |
25 | | - $this->month = ($month > 1 && $month < 13) ? $month : false; |
| 25 | + $this->month = ($month > 0 && $month < 13) ? $month : false; |
26 | 26 | $this->mDb = wfGetDB( DB_SLAVE, 'contributions' ); |
27 | 27 | } |
28 | 28 | |