From: Amir E. Aharoni Date: Sat, 26 Sep 2015 09:45:52 +0000 (+0300) Subject: WebStart.php: Make lines shorter to make phpcs happier X-Git-Tag: 1.31.0-rc.0~9792^2 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=94508ab5b2793c724b4f440bd4a5ce134041b65c;p=lhc%2Fweb%2Fwiklou.git WebStart.php: Make lines shorter to make phpcs happier Change-Id: Ifbcf572a08837e9572cc4ed9bd274d4e5ad676ab --- 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.' ); }