From 897ccb3b6bd8b8edf457a1112aeb57b1dd0ca4c5 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 23 Jun 2007 20:10:15 +0000 Subject: [PATCH] *Should be greater than 0, not 1 ;) --- includes/SpecialContributions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ); } -- 2.20.1