mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Minimum version is actually PHP 7.2.5 because of dependencies
This commit is contained in:
parent
a667228f29
commit
735d3dd97c
2 changed files with 3 additions and 3 deletions
|
|
@ -11,10 +11,10 @@ if (defined('RX_VERSION'))
|
|||
/**
|
||||
* Check PHP version.
|
||||
*/
|
||||
if (version_compare(PHP_VERSION, '7.2', '<'))
|
||||
if (version_compare(PHP_VERSION, '7.2.5', '<'))
|
||||
{
|
||||
header('HTTP/1.1 500 Internal Server Error');
|
||||
echo 'Rhymix requires PHP 7.2 or higher.';
|
||||
echo 'Rhymix requires PHP 7.2.5 or higher.';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue