mikuli.cz

:)
git clone https://git.sr.ht/~ashymad/mikuli.cz
Log | Files | Refs

commit ee4831481ae3053cd1fb5fc8a5988c6f0fba51fe
parent 58bbbfd774939fe0efd126135804c6aba08a5913
Author: markseu <mark2011@mayberg.se>
Date:   Tue, 12 Apr 2022 10:39:54 +0200

Datenstrom Yellow requires PHP 7.0 or higher

Diffstat:
Msystem/extensions/core.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/extensions/core.php b/system/extensions/core.php @@ -77,7 +77,7 @@ class YellowCore { public function checkRequirements() { $troubleshooting = PHP_SAPI!="cli" ? "<a href=\"".$this->getTroubleshootingUrl()."\">See troubleshooting</a>." : "See ".$this->getTroubleshootingUrl(); - version_compare(PHP_VERSION, "5.6", ">=") || die("Datenstrom Yellow requires PHP 5.6 or higher! $troubleshooting\n"); + version_compare(PHP_VERSION, "7.0", ">=") || die("Datenstrom Yellow requires PHP 7.0 or higher! $troubleshooting\n"); extension_loaded("curl") || die("Datenstrom Yellow requires PHP curl extension! $troubleshooting\n"); extension_loaded("gd") || die("Datenstrom Yellow requires PHP gd extension! $troubleshooting\n"); extension_loaded("mbstring") || die("Datenstrom Yellow requires PHP mbstring extension! $troubleshooting\n");