From d9022f63880ce039446fba8364f68e656b7bf4cb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 3 May 2012 13:01:35 +0200 Subject: Update to MediaWiki 1.19.0 --- includes/PHPVersionError.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'includes/PHPVersionError.php') diff --git a/includes/PHPVersionError.php b/includes/PHPVersionError.php index 91502a4c..ec6490a8 100644 --- a/includes/PHPVersionError.php +++ b/includes/PHPVersionError.php @@ -7,7 +7,7 @@ * * Calling this function kills execution immediately. * - * @param $entryPoint String Which entry point we're protecting. One of: + * @param $type String Which entry point we are protecting. One of: * - index.php * - load.php * - api.php @@ -17,7 +17,7 @@ * version are hardcoded here */ function wfPHPVersionError( $type ){ - $mwVersion = '1.18'; + $mwVersion = '1.19'; $phpVersion = PHP_VERSION; $message = "MediaWiki $mwVersion requires at least PHP version 5.2.3, you are using PHP $phpVersion."; if( $type == 'index.php' ) { @@ -32,7 +32,7 @@ function wfPHPVersionError( $type ){ header( 'Cache-control: none' ); header( 'Pragma: nocache' ); -$finalOutput = << @@ -88,4 +88,4 @@ HTML; } echo( "$finalOutput\n" ); die( 1 ); -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf