From bd03779c92b921e5f17eaf671485194a8988f005 Mon Sep 17 00:00:00 2001 From: Fomafix Date: Fri, 24 Aug 2018 18:27:37 +0200 Subject: [PATCH] Start showing warning for deprecated PHP entry point Change-Id: Idb9ab6f88dfa2daa9020a4ebfc2bf061ce600ec7 --- CookieWarning.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CookieWarning.php b/CookieWarning.php index 9382025..014b891 100644 --- a/CookieWarning.php +++ b/CookieWarning.php @@ -3,11 +3,11 @@ if ( function_exists( 'wfLoadExtension' ) ) { wfLoadExtension( 'CookieWarning' ); // Keep i18n globals so mergeMessageFileList.php doesn't break $wgMessagesDirs['CookieWarning'] = __DIR__ . '/i18n'; - /* wfWarn( + wfWarn( 'Deprecated PHP entry point used for CookieWarning extension. Please use wfLoadExtension' . 'instead, see https://www.mediawiki.org/wiki/Extension_registration for more details.' - ); */ + ); return true; } else { - die( 'This version of the CookieWarning extension requires MediaWiki 1.25+' ); + die( 'This version of the CookieWarning extension requires MediaWiki 1.32+' ); }