From 503fdfbbbf03921c0b8f4bfd9bb6eeb49979eb31 Mon Sep 17 00:00:00 2001 From: paladox Date: Wed, 29 Nov 2023 13:34:42 -0500 Subject: [PATCH] Update Target.php --- includes/Target.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Target.php b/includes/Target.php index a6bfe45..46d4a35 100644 --- a/includes/Target.php +++ b/includes/Target.php @@ -196,7 +196,7 @@ class Target { $wikiPageFactory = MediaWikiServices::getInstance()->getWikiPageFactory(); $this->content = $wikiPageFactory->newFromTitle( $this->title )->getContent(); } else { - $this->content = WikiPage::factory( $this->title ); + $this->content = \WikiPage::factory( $this->title ); } }; return $this->content;