mirror of
https://github.com/diocloid/LinkTitles.git
synced 2025-07-13 17:59:29 +02:00
Fix incorrect namespace error.
- Fix: The special page did not work.
This commit is contained in:
@ -133,7 +133,7 @@ class Special extends \SpecialPage {
|
|||||||
|
|
||||||
// Iterate through the pages; break if a time limit is exceeded.
|
// Iterate through the pages; break if a time limit is exceeded.
|
||||||
foreach ( $res as $row ) {
|
foreach ( $res as $row ) {
|
||||||
$curTitle = Title::makeTitleSafe( $row->page_namespace, $row->page_title);
|
$curTitle = \Title::makeTitleSafe( $row->page_namespace, $row->page_title);
|
||||||
Extension::processPage($curTitle, $this->getContext());
|
Extension::processPage($curTitle, $this->getContext());
|
||||||
$start += 1;
|
$start += 1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user