mirror of
https://github.com/diocloid/LinkTitles.git
synced 2025-09-01 05:56:56 +02:00
more changes
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
namespace LinkTitles;
|
||||
|
||||
use MediaWiki\MediaWikiServices;
|
||||
use \MediaWiki\Title\Title as MWTitle;
|
||||
use \MediaWiki\Title\Title;
|
||||
|
||||
/**
|
||||
* Represents a page that is a potential link target.
|
||||
@@ -77,7 +77,7 @@ class Target {
|
||||
* @param String &$title Title of the target page
|
||||
*/
|
||||
public function __construct( $namespace, $title, Config &$config ) {
|
||||
$this->title = MWTitle::makeTitleSafe( $namespace, $title );
|
||||
$this->title = \MediaWiki\Title\Title::makeTitleSafe( $namespace, $title );
|
||||
$this->titleValue = $this->title->getTitleValue();
|
||||
$this->config = $config;
|
||||
|
||||
|
Reference in New Issue
Block a user