From e259b8cd5a795de351e0f913ab4614244c344900 Mon Sep 17 00:00:00 2001 From: Shish Date: Sat, 24 May 2014 10:51:09 +0100 Subject: [PATCH] bcrypt had bugs before 5.3.7 --- README.markdown | 2 +- core/util.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 125e4337..05d98ffc 100644 --- a/README.markdown +++ b/README.markdown @@ -21,7 +21,7 @@ check out one of the versioned branches. # Requirements - MySQL/MariaDB 5.1+ (with experimental support for PostgreSQL 8+ and SQLite 3) -- PHP 5.3+ +- PHP 5.3.7+ - GD or ImageMagick # Installation diff --git a/core/util.inc.php b/core/util.inc.php index 2e888751..6aafb1fe 100644 --- a/core/util.inc.php +++ b/core/util.inc.php @@ -630,7 +630,7 @@ function getExtension ($mime_type){ * @private */ function _version_check() { - $min_version = "5.3.0"; + $min_version = "5.3.7"; if(version_compare(PHP_VERSION, $min_version) == -1) { print " Currently SCore Engine doesn't support versions of PHP lower than $min_version --