diff options
author | daniel <dkinzler@wikimedia.org> | 2021-04-30 16:41:54 +0200 |
---|---|---|
committer | daniel <dkinzler@wikimedia.org> | 2021-05-12 23:17:59 +0200 |
commit | 246c54373757dac8b17013243913d6961118428a (patch) | |
tree | bdf470bd35315107c36c5771b017593225c1e5b7 /includes/api/ApiQueryCategoryInfo.php | |
parent | 64b8677ca2c2a2e27872620cd8d9917b03fb0ca8 (diff) | |
download | mediawikicore-246c54373757dac8b17013243913d6961118428a.tar.gz mediawikicore-246c54373757dac8b17013243913d6961118428a.zip |
ApiPageSet: replace Title in method signatures
Bug: T278459
Change-Id: Ie817fd476d6236791431b5ba5ce557800ef5222d
Diffstat (limited to 'includes/api/ApiQueryCategoryInfo.php')
-rw-r--r-- | includes/api/ApiQueryCategoryInfo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/api/ApiQueryCategoryInfo.php b/includes/api/ApiQueryCategoryInfo.php index b51a088b74f2..b03abc989955 100644 --- a/includes/api/ApiQueryCategoryInfo.php +++ b/includes/api/ApiQueryCategoryInfo.php @@ -40,7 +40,7 @@ class ApiQueryCategoryInfo extends ApiQueryBase { } $categories = $alltitles[NS_CATEGORY]; - $titles = $this->getPageSet()->getGoodAndMissingTitles(); + $titles = $this->getPageSet()->getGoodAndMissingPages(); $cattitles = []; foreach ( $categories as $c ) { /** @var Title $t */ |