Sfoglia il codice sorgente

Increase minimum php version to 7.1.3

causefx 7 anni fa
parent
commit
af1e10fd6c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      api/functions/static-globals.php

+ 1 - 1
api/functions/static-globals.php

@@ -4,7 +4,7 @@
 $GLOBALS['installedVersion'] = '2.0.0-beta.990';
 $GLOBALS['installedVersion'] = '2.0.0-beta.990';
 // ===================================
 // ===================================
 // Quick php Version check
 // Quick php Version check
-$GLOBALS['minimumPHP'] = '7.0.0';
+$GLOBALS['minimumPHP'] = '7.1.3';
 if (!(version_compare(PHP_VERSION, $GLOBALS['minimumPHP']) >= 0)) {
 if (!(version_compare(PHP_VERSION, $GLOBALS['minimumPHP']) >= 0)) {
 	die('Organizr needs PHP Version: ' . $GLOBALS['minimumPHP'] . '<br/> You have PHP Version: ' . PHP_VERSION);
 	die('Organizr needs PHP Version: ' . $GLOBALS['minimumPHP'] . '<br/> You have PHP Version: ' . PHP_VERSION);
 }
 }