From 94508ab5b2793c724b4f440bd4a5ce134041b65c Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sat, 26 Sep 2015 12:45:52 +0300 Subject: [PATCH] WebStart.php: Make lines shorter to make phpcs happier Change-Id: Ifbcf572a08837e9572cc4ed9bd274d4e5ad676ab --- includes/WebStart.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/WebStart.php b/includes/WebStart.php index f5a4f93bb3..b095577c74 100644 --- a/includes/WebStart.php +++ b/includes/WebStart.php @@ -29,14 +29,14 @@ # Die if register_globals is enabled (PHP <=5.3) # This must be done before any globals are set by the code if ( ini_get( 'register_globals' ) ) { - die( 'MediaWiki does not support installations where register_globals is enabled. ' - . 'Please see mediawiki.org ' + die( 'MediaWiki does not support installations where register_globals is enabled. Please see ' + . 'mediawiki.org ' . 'for help on how to disable it.' ); } if ( function_exists( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc() ) { - die( 'MediaWiki does not function when magic quotes are enabled. ' - . 'Please see the PHP Manual ' + die( 'MediaWiki does not function when magic quotes are enabled. Please see the ' + . 'PHP Manual ' . 'for help on how to disable magic quotes.' ); } -- 2.20.1