From: Bartosz DziewoƄski Date: Tue, 5 Sep 2017 17:52:41 +0000 (+0200) Subject: EditPage: Remove isOouiEnabled(), deprecated since MW 1.30 X-Git-Tag: 1.34.0-rc.0~5590^2 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=ae43994ff52821c755216e5257b965b94742f5e0;p=lhc%2Fweb%2Fwiklou.git EditPage: Remove isOouiEnabled(), deprecated since MW 1.30 Change-Id: I0ca2960ca4da5f7ec5acb254b30254809857bafa --- diff --git a/RELEASE-NOTES-1.32 b/RELEASE-NOTES-1.32 index 366182b4dd..39004266ec 100644 --- a/RELEASE-NOTES-1.32 +++ b/RELEASE-NOTES-1.32 @@ -58,6 +58,7 @@ changes to languages because of Phabricator reports. removed (deprecated in 1.31). * The EDIT_TOKEN_SUFFIX constant was removed (deprecated in 1.27). Use MediaWiki\Session\Token::SUFFIX instead. +* EditPage::isOouiEnabled(), deprecated in 1.30, was removed. === Deprecations in 1.32 === * Use of a StartProfiler.php file is deprecated in favour of placing diff --git a/includes/EditPage.php b/includes/EditPage.php index fcf3d499a1..4f6b7b4bbb 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -504,16 +504,6 @@ class EditPage { } } - /** - * Check if the edit page is using OOUI controls - * @return bool Always true - * @deprecated since 1.30 - */ - public function isOouiEnabled() { - wfDeprecated( __METHOD__, '1.30' ); - return true; - } - /** * Returns if the given content model is editable. *