X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FLinkBatch.php;h=d9a9666dc2e8e8dcc7535fea68050cf16caf4971;hb=7a7cf1a2f9468e0ac27dcd078da4a53e10cbe017;hp=481995d90d12b5ff27cd9ef839fc28b76912cd5b;hpb=79d5225c0e864482269e2315f47b899697681e52;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/LinkBatch.php b/includes/LinkBatch.php index 481995d90d..d9a9666dc2 100644 --- a/includes/LinkBatch.php +++ b/includes/LinkBatch.php @@ -4,7 +4,7 @@ * Class representing a list of titles * The execute() method checks them all for existence and adds them to a LinkCache object * - * @addtogroup Cache + * @ingroup Cache */ class LinkBatch { /** @@ -134,7 +134,7 @@ class LinkBatch { $sql = "SELECT page_id, page_namespace, page_title, page_len, page_is_redirect FROM $page WHERE $set"; // Do query - $res = new ResultWrapper( $dbr, $dbr->query( $sql, __METHOD__ ) ); + $res = $dbr->query( $sql, __METHOD__ ); wfProfileOut( __METHOD__ ); return $res; }