From 1f040b3fbc21dadef3f07d462a2592d3c117109a Mon Sep 17 00:00:00 2001 From: Jimako Date: Thu, 18 Oct 2018 19:47:56 +0200 Subject: [PATCH] display correct version in message - Optimise PHP version check for Github sync related: https://github.com/e107inc/e107/commit/94adbd06ccec4187d34a097742f5697fb577d53e --- e107_admin/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_admin/db.php b/e107_admin/db.php index fff4546fd..0be646ccc 100644 --- a/e107_admin/db.php +++ b/e107_admin/db.php @@ -338,7 +338,7 @@ class system_tools if(version_compare(PHP_VERSION, $min_php_version, "<")) { - $mes->addWarning("The minimum required PHP version is ".$min_php_version.". You are using PHP version ".$php_version.".
Syncing with Github has been disabled to avoid broken fuctionality."); // No nee to translate, developer mode only + $mes->addWarning("The minimum required PHP version is ".$min_php_version.". You are using PHP version ".PHP_VERSION.".
Syncing with Github has been disabled to avoid broken fuctionality."); // No nee to translate, developer mode only } else {