From: Max Semenik Date: Mon, 5 Jul 2010 20:31:01 +0000 (+0000) Subject: Removed sysopRequired() and developerRequired() from OutputPage. Even junkiest extens... X-Git-Tag: 1.31.0-rc.0~36253 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=b2df01289083f4ea58d474a5de0d4f8b1b81f349;p=lhc%2Fweb%2Fwiklou.git Removed sysopRequired() and developerRequired() from OutputPage. Even junkiest extensions don't use them anymore, thanks to exceptions they've been throwing for the last 4 years. --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index b0c30e30b9..6bfa21394a 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1792,20 +1792,6 @@ class OutputPage { $this->returnToMain(); } - /** - * @deprecated use permissionRequired() - */ - public function sysopRequired() { - throw new MWException( "Call to deprecated OutputPage::sysopRequired() method\n" ); - } - - /** - * @deprecated use permissionRequired() - */ - public function developerRequired() { - throw new MWException( "Call to deprecated OutputPage::developerRequired() method\n" ); - } - /** * Produce the stock "please login to use the wiki" page */