mirror of
https://github.com/diocloid/LinkTitles.git
synced 2025-09-03 23:06:57 +02:00
Fixing for new MediaWiki Titles
This commit is contained in:
@@ -43,11 +43,7 @@ class Targets {
|
|||||||
* @param String $sourceNamespace The namespace of the current page.
|
* @param String $sourceNamespace The namespace of the current page.
|
||||||
* @param Config $config LinkTitles configuration.
|
* @param Config $config LinkTitles configuration.
|
||||||
*/
|
*/
|
||||||
public static function singleton( MediaWiki\Title\Title $title, Config $config ) {
|
public static function singleton( \MediaWiki\Title\Title $title, Config $config ) {
|
||||||
// If we received a MediaWiki\Title\Title, convert to legacy Title
|
|
||||||
if ( $title instanceof MediaWiki\Title\Title ) {
|
|
||||||
$title = Title::newFromLinkTarget( $title );
|
|
||||||
}
|
|
||||||
if ( ( self::$instance === null ) || ( self::$instance->sourceNamespace != $title->getNamespace() ) ) {
|
if ( ( self::$instance === null ) || ( self::$instance->sourceNamespace != $title->getNamespace() ) ) {
|
||||||
self::$instance = new Targets( $title, $config );
|
self::$instance = new Targets( $title, $config );
|
||||||
}
|
}
|
||||||
@@ -89,9 +85,9 @@ class Targets {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The constructor is private to enforce using the singleton pattern.
|
* The constructor is private to enforce using the singleton pattern.
|
||||||
* @param \Title $title
|
* @param Mediawiki\Title\Title $title
|
||||||
*/
|
*/
|
||||||
private function __construct( \Title $title, Config $config) {
|
private function __construct( \MediaWiki\Title\Title $title, Config $config) {
|
||||||
$this->config = $config;
|
$this->config = $config;
|
||||||
$this->sourceNamespace = $title->getNamespace();
|
$this->sourceNamespace = $title->getNamespace();
|
||||||
$this->fetch();
|
$this->fetch();
|
||||||
|
Reference in New Issue
Block a user