mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-16 16:58:38 +01:00
Bump required PHP version
Summary: `mysql_set_charset()` is available since PHP 5.2.3. I've searched also for other new functions and this is the newest. Test Plan: / Reviewers: epriestley Reviewed By: epriestley CC: aran Differential Revision: https://secure.phabricator.com/D2126
This commit is contained in:
parent
f6748bc190
commit
9b043e5966
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ $__start__ = microtime(true);
|
|||
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
|
||||
$required_version = '5.2.0';
|
||||
$required_version = '5.2.3';
|
||||
if (version_compare(PHP_VERSION, $required_version) < 0) {
|
||||
phabricator_fatal_config_error(
|
||||
"You are running PHP version '".PHP_VERSION."', which is older than ".
|
||||
|
|
Loading…
Add table
Reference in a new issue