From 4c619be17be5b3a49e1aa5ad1d54c5be331aaf76 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 8 Mar 2016 23:55:39 +0100 Subject: [PATCH] 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 --- RELEASE-NOTES-1.27 | 1 + includes/OutputPage.php | 11 ----------- 2 files changed, 1 insertion(+), 11 deletions(-) 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 -- 2.20.1