From 7e18aed900995b8066e382eec331aea04c133770 Mon Sep 17 00:00:00 2001 From: Reedy Date: Fri, 4 Aug 2017 20:03:46 +0100 Subject: [PATCH] Don't declare ApiQueryLinks::$titlesParam dynamically Change-Id: Ie7b553b2d368766df2c3989d58e42f1b6d3d6779 --- includes/api/ApiQueryLinks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiQueryLinks.php b/includes/api/ApiQueryLinks.php index 29c0b74c37..3639c06dbc 100644 --- a/includes/api/ApiQueryLinks.php +++ b/includes/api/ApiQueryLinks.php @@ -34,7 +34,7 @@ class ApiQueryLinks extends ApiQueryGeneratorBase { const LINKS = 'links'; const TEMPLATES = 'templates'; - private $table, $prefix, $helpUrl; + private $table, $prefix, $titlesParam, $helpUrl; public function __construct( ApiQuery $query, $moduleName ) { switch ( $moduleName ) { -- 2.20.1