X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=blobdiff_plain;f=includes%2Fdeferred%2FLinksDeletionUpdate.php;h=3c86d11ac69c60d8a23cb89a8a27a5ca37da816d;hb=fd3f586dbbbb556aa19c0a53c7e8cb1aa93fa164;hp=52e996a04778f890444311ddf946780a2d352f74;hpb=732b5e2745ca8f6153e19cc10c3c9acb1b2a6331;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/deferred/LinksDeletionUpdate.php b/includes/deferred/LinksDeletionUpdate.php index 52e996a047..3c86d11ac6 100644 --- a/includes/deferred/LinksDeletionUpdate.php +++ b/includes/deferred/LinksDeletionUpdate.php @@ -96,13 +96,12 @@ class LinksDeletionUpdate extends DataUpdate implements EnqueueableDataUpdate { } } - // Refresh the category table entry if it seems to have no pages. Check - // master for the most up-to-date cat_pages count. + // Refresh counts on categories that should be empty now if ( $title->getNamespace() === NS_CATEGORY ) { $row = $dbw->selectRow( 'category', [ 'cat_id', 'cat_title', 'cat_pages', 'cat_subcats', 'cat_files' ], - [ 'cat_title' => $title->getDBkey(), 'cat_pages <= 0' ], + [ 'cat_title' => $title->getDBkey(), 'cat_pages <= 100' ], __METHOD__ ); if ( $row ) {