From 7853a662d928d87d45209a2a73450dcf9bbe3851 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sat, 20 Aug 2005 17:22:15 +0000 Subject: [PATCH] This seems to fix go=first, don't know why --- includes/SpecialContributions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 93ff7b18f3..dede621098 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -105,7 +105,7 @@ class contribs_finder { "rev_user_text = " . $this->dbr->addQuotes($this->username) . $nscond; $sql .= " ORDER BY rev_timestamp ASC"; - $sql = $this->dbr->limitResult($sql, $this->limit + 1, 0); + $sql = $this->dbr->limitResult($sql, $this->limit, 0); $res = $this->dbr->query($sql); $rows = array(); while ($obj = $this->dbr->fetchObject($res)) -- 2.20.1