Fix incorrect namespace error.

- Fix: The special page did not work.
This commit is contained in:
Daniel Kraus
2017-01-19 09:02:30 +01:00
parent 815e8a7822
commit 464aac0ccd

View File

@ -133,7 +133,7 @@ class Special extends \SpecialPage {
// Iterate through the pages; break if a time limit is exceeded.
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());
$start += 1;