r23307 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r23306‎ | r23307 | r23308 >
Date:20:10, 23 June 2007
Author:aaron
Status:old
Tags:
Comment:
*Should be greater than 0, not 1 ;)
Modified paths:
  • /trunk/phase3/includes/SpecialContributions.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SpecialContributions.php
@@ -21,7 +21,7 @@
2222 $month = intval($month);
2323
2424 $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;
2626 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
2727 }
2828

Follow-up revisions

RevisionCommit summaryAuthorDate
r23407Merged revisions 23203-23405 via svnmerge from...david23:00, 25 June 2007

Status & tagging log