From: Siebrand Mazeland Date: Tue, 8 Mar 2016 22:55:39 +0000 (+0100) Subject: OutputPage::out() was removed X-Git-Tag: 1.31.0-rc.0~7661^2~1 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/modifier.php?a=commitdiff_plain;h=4c619be17be5b3a49e1aa5ad1d54c5be331aaf76;p=lhc%2Fweb%2Fwiklou.git OutputPage::out() was removed Deprecated since 1.22. Six use remain in Gerrit extension SemanticPageMaker, that's been unmaintained since MediaWiki 1.17. They were not replaced. Change-Id: I8d68657562f683a4933cc5321d5df04c80cdfc29 --- diff --git a/RELEASE-NOTES-1.27 b/RELEASE-NOTES-1.27 index 34098f3076..302e20a076 100644 --- a/RELEASE-NOTES-1.27 +++ b/RELEASE-NOTES-1.27 @@ -230,6 +230,7 @@ HHVM 3.1. * Language::specialPage() was removed (deprecated since 1.24). * OutputPage::getHeadItems() was removed (deprecated since 1.24). * OutputPage::getScript() was removed (deprecated since 1.24). +* OutputPage::out() was removed (deprecated since 1.22). * OutputPage::setAllowedModules() was removed (deprecated since 1.24). === Languages updated in 1.27 === diff --git a/includes/OutputPage.php b/includes/OutputPage.php index a05c00c98d..305359f84a 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2327,17 +2327,6 @@ class OutputPage extends ContextSource { } - /** - * Actually output something with print. - * - * @param string $ins The string to output - * @deprecated since 1.22 Use echo yourself. - */ - public function out( $ins ) { - wfDeprecated( __METHOD__, '1.22' ); - print $ins; - } - /** * Prepare this object to display an error page; disable caching and * indexing, clear the current text and redirect, set the page's title