mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-22 00:07:08 +01:00
Fix non well formed number issue
This commit is contained in:
@@ -6,7 +6,7 @@ if (!isset($reqsPassed)) {
|
||||
}
|
||||
|
||||
// Check PHP version meets minimum requirements
|
||||
if (phpversion()*1 < 7.0) {
|
||||
if ((int) phpversion() < 7) {
|
||||
$reqsPassed = false;
|
||||
array_push($reqsFailures, "phpVersion");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user