diff options
author | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2011-08-16 11:05:19 +0000 |
---|---|---|
committer | Alexandre Emsenhuber <ialex@users.mediawiki.org> | 2011-08-16 11:05:19 +0000 |
commit | d49f6e68bddcd9912ce0d1d960f1e3555f27c90e (patch) | |
tree | 0bcb5ded5c1da6fffb34b6833a99c28bd4118445 /includes/SpecialPage.php | |
parent | 3a5a0a394d1c9f1ff708ee3febabd806b515686c (diff) | |
download | mediawikicore-d49f6e68bddcd9912ce0d1d960f1e3555f27c90e.tar.gz mediawikicore-d49f6e68bddcd9912ce0d1d960f1e3555f27c90e.zip |
Per Reedy, follow-up r93758: SpecialPage::capturePath() now has incorrect signature. Removed the function rather than updating it, since it's not called at all and current behavior is incompatible with the old one.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/94619
Diffstat (limited to 'includes/SpecialPage.php')
-rw-r--r-- | includes/SpecialPage.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 43ade672136e..0a52d753ad39 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -236,19 +236,6 @@ class SpecialPage { } /** - * Just like executePath() except it returns the HTML instead of outputting it - * Returns false if there was no such special page, or a title object if it was - * a redirect. - * - * @param $title Title - * @return String: HTML fragment - * @deprecated since 1.18 call SpecialPageFactory method directly - */ - static function capturePath( &$title ) { - return SpecialPageFactory::capturePath( $title ); - } - - /** * Get the local name for a specified canonical name * * @param $name String |