Skip to content

Commit

Permalink
Small changes regarding version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
GodMod committed Jun 17, 2020
1 parent 9c95f4c commit b7b1071
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
define('VERSION_EXT', '2.3.32'); // the external version number to be shown in the footer
define('VERSION_WIP', false); // work in progress or stable?
define('VERSION_PHP_RQ', '7.1.0'); // required version of PHP
define('VERSION_PHP_REC', '7.4.0'); // recommended version of PHP
define('VERSION_PHP_REC', '7.3.0'); // recommended version of PHP
define('REQ_PHP_MEMORY', '64M'); // required PHP Memory
define('REQ_PHP_MEMORY_REC','128M'); // required PHP Memory

Expand Down
2 changes: 1 addition & 1 deletion install/install_steps/php_check.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ private function getCheckParams(){
'installed' => phpversion(),
'recommended' => VERSION_PHP_REC,
'passfail' => (version_compare(PHP_VERSION, VERSION_PHP_RQ, '>=')) ? true : false,
'adviced_fail' => (version_compare(PHP_VERSION, VERSION_PHP_REC, '<=')) ? true : false
'adviced_fail' => (version_compare(PHP_VERSION, VERSION_PHP_REC, '<')) ? true : false
),
'mysql' => array(
'required' => $this->lang['yes'],
Expand Down

0 comments on commit b7b1071

Please sign in to comment.