From 0eaad1f44a7a9256ab329d42b69129d0bb3d1995 Mon Sep 17 00:00:00 2001 From: "James D. Forrester" Date: Mon, 3 Oct 2022 11:58:24 -0400 Subject: [PATCH] ApiQueryLinterStats: Change the 'ls' prefix to 'lntrst' to avoid conflict In practice this isn't a breaking change as no-one has any params to re-name in callers. Bug: T319202 Change-Id: Ic925e258ad3c2e194fd9f04f8afd255a9aa99e45 (cherry picked from commit 1f119cd5b17bb69135637e6480a4b182ba114b27) --- includes/ApiQueryLinterStats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ApiQueryLinterStats.php b/includes/ApiQueryLinterStats.php index f84c6f43..7a1c2040 100644 --- a/includes/ApiQueryLinterStats.php +++ b/includes/ApiQueryLinterStats.php @@ -29,7 +29,7 @@ class ApiQueryLinterStats extends ApiQueryBase { * @param ApiQuery $queryModule */ public function __construct( ApiQuery $queryModule ) { - parent::__construct( $queryModule, 'linterstats', 'ls' ); + parent::__construct( $queryModule, 'linterstats', 'lntrst' ); } /**