From c7270b7ac38c6666f252d76216b417079979b291 Mon Sep 17 00:00:00 2001 From: River Tarnell Date: Fri, 29 Jul 2005 06:40:40 +0000 Subject: [PATCH] fix go=first --- includes/SpecialContributions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index ea66479e5a..35afe173ec 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -103,7 +103,7 @@ class contribs_finder { "WHERE page_id = rev_page AND " . "rev_user_text = " . $this->dbr->addQuotes($this->username) . $nscond; - $sql .= " ORDER BY rev_timestamp ASC LIMIT " . ($this->limit + 1); + $sql .= " ORDER BY rev_timestamp ASC LIMIT " . $this->limit; $res = $this->dbr->query($sql); $rows = array(); while ($obj = $this->dbr->fetchObject($res)) -- 2.20.1