diff options
author | Chad Horohoe <demon@users.mediawiki.org> | 2011-05-05 22:27:54 +0000 |
---|---|---|
committer | Chad Horohoe <demon@users.mediawiki.org> | 2011-05-05 22:27:54 +0000 |
commit | 266f945f75dd5b8906a87c5572f3481b5b067040 (patch) | |
tree | 4929afab9864db05dfbabc4a6726154450b61b72 /index.php | |
parent | 4876c20c9ab382c8165cf32db4a6b80bb7f6f72b (diff) | |
download | mediawikicore-266f945f75dd5b8906a87c5572f3481b5b067040.tar.gz mediawikicore-266f945f75dd5b8906a87c5572f3481b5b067040.zip |
5.2.3, like we do everywhere else
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/87514
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php index 6c09dca32811..249d2c6359e2 100644 --- a/index.php +++ b/index.php @@ -39,7 +39,7 @@ // Bail on old versions of PHP. Pretty much every other file in the codebase // has structures (try/catch, foo()->bar(), etc etc) which throw parse errors in PHP 4. // Setup.php and ObjectCache.php have structures invalid in PHP 5.0 and 5.1, respectively. -if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.2.0' ) < 0 ) { +if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.2.3' ) < 0 ) { $phpversion = htmlspecialchars( phpversion() ); $errorMsg = <<<ENDL <p> |