X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FPageProps.php;h=ff8deee3733418b66be47b784694bf7cd58289dd;hp=382d089c5bc7a10dc24af0a9261a20d66dae93ba;hb=631e8695b15412ec16c31623cbd6e5aa3d6efb1e;hpb=24dc5218b18bfa065a101057523f39a9c046d046 diff --git a/includes/PageProps.php b/includes/PageProps.php index 382d089c5b..ff8deee373 100644 --- a/includes/PageProps.php +++ b/includes/PageProps.php @@ -55,7 +55,7 @@ class PageProps { } $previousValue = self::$instance; self::$instance = $store; - return new ScopedCallback( function() use ( $previousValue ) { + return new ScopedCallback( function () use ( $previousValue ) { self::$instance = $previousValue; } ); } @@ -242,6 +242,8 @@ class PageProps { private function getGoodIDs( $titles ) { $result = []; if ( is_array( $titles ) ) { + ( new LinkBatch( $titles ) )->execute(); + foreach ( $titles as $title ) { $pageID = $title->getArticleID(); if ( $pageID > 0 ) {