Upgrade to use of new MediaWiki\Title for use in MW 1.44

This commit is contained in:
2025-07-09 22:27:34 +02:00
parent 90edd23e4f
commit c7060f89ca
6 changed files with 15 additions and 11 deletions

View File

@@ -25,6 +25,7 @@
namespace LinkTitles;
use MediaWiki\MediaWikiServices;
use MediaWiki\Title\Title as MWTitle;
/**
* Represents a page that is a potential link target.
@@ -32,7 +33,7 @@ use MediaWiki\MediaWikiServices;
class Target {
/**
* A Title object for the target page currently being examined.
* @var \Title $title
* @var MediaWiki\Title\Title $title
*/
private $title;
@@ -76,7 +77,7 @@ class Target {
* @param String &$title Title of the target page
*/
public function __construct( $namespace, $title, Config &$config ) {
$this->title = \Title::makeTitleSafe( $namespace, $title );
$this->title = MWTitle::makeTitleSafe( $namespace, $title );
$this->titleValue = $this->title->getTitleValue();
$this->config = $config;