From aa0308e3b901c28d4a5e63d1b93b999bde65e6ee Mon Sep 17 00:00:00 2001 From: Marius Hoch Date: Sun, 2 Jun 2013 15:23:09 +0200 Subject: [PATCH] Fix edit patrolling in multi Diffs In multi diffs we had a "wrong" value for rc_last_oldid set (not the directly previous revision but the one selected by the user). Due to that there weren't any unpatrolled recentchanges rows found. As that is cached in memcached these rows stay unpatrollable forever. Bug: 49019 Change-Id: I5d6111032dba7d102e30d85718639697f44c036e --- includes/diff/DifferenceEngine.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/diff/DifferenceEngine.php b/includes/diff/DifferenceEngine.php index 5cdc0b6f5e..4ee066e9e3 100644 --- a/includes/diff/DifferenceEngine.php +++ b/includes/diff/DifferenceEngine.php @@ -431,7 +431,6 @@ class DifferenceEngine extends ContextSource { array( 'rc_timestamp' => $db->timestamp( $this->mNewRev->getTimestamp() ), 'rc_this_oldid' => $this->mNewid, - 'rc_last_oldid' => $this->mOldid, 'rc_patrolled' => 0 ), __METHOD__, -- 2.20.1