From: Glaisher Date: Wed, 8 Jun 2016 09:52:40 +0000 (+0500) Subject: LinksDeletionUpdate: Fix typos in column names X-Git-Tag: 1.31.0-rc.0~6686 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=69c8de34ad4ed1b9900aeb02cf66af4e502e582f;p=lhc%2Fweb%2Fwiklou.git LinksDeletionUpdate: Fix typos in column names Bug: T137280 Change-Id: I78ee489f10e796d2b3fa39dcb4f65f0763860bf3 --- diff --git a/includes/deferred/LinksDeletionUpdate.php b/includes/deferred/LinksDeletionUpdate.php index d294fd2c42..b8bd74722c 100644 --- a/includes/deferred/LinksDeletionUpdate.php +++ b/includes/deferred/LinksDeletionUpdate.php @@ -110,13 +110,13 @@ class LinksDeletionUpdate extends SqlDataUpdate implements EnqueueableDataUpdate ); $this->batchDeleteByPK( 'langlinks', - [ 'il_from' => $id ], - [ 'il_from', 'll_lang' ], + [ 'll_from' => $id ], + [ 'll_from', 'll_lang' ], $batchSize ); $this->batchDeleteByPK( 'iwlinks', - [ 'il_from' => $id ], + [ 'iwl_from' => $id ], [ 'iwl_from', 'iwl_prefix', 'iwl_title' ], $batchSize );