Motivation
At the moment there's a deprecated logic exists in SpecialPageFactory.php that can be safely removed
if ( $rec instanceof SpecialPage ) { wfDeprecated( "a SpecialPage instance (for $realName) in " . '$wgSpecialPages or from the SpecialPage_initList hook', '1.34' ); $page = $rec; // XXX: we should deep clone here }
Expected Result:
The occurance above should be removed.