From: Aaron Schulz Date: Sat, 23 Jun 2007 20:10:15 +0000 (+0000) Subject: *Should be greater than 0, not 1 ;) X-Git-Tag: 1.31.0-rc.0~52427 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=897ccb3b6bd8b8edf457a1112aeb57b1dd0ca4c5;p=lhc%2Fweb%2Fwiklou.git *Should be greater than 0, not 1 ;) --- diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index eeed985b4f..b5715c6272 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -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' ); }