From: Marius Hoch Date: Sun, 2 Jun 2013 13:23:09 +0000 (+0200) Subject: Fix edit patrolling in multi Diffs X-Git-Tag: 1.31.0-rc.0~19508^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/modifier.php?a=commitdiff_plain;h=aa0308e3b901c28d4a5e63d1b93b999bde65e6ee;p=lhc%2Fweb%2Fwiklou.git 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 --- 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__,