Merge branch 'rhymix:master' into develop

This commit is contained in:
Lastorder 2024-10-19 10:03:03 +09:00 committed by GitHub
commit af21a9fb8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 36 additions and 53 deletions

View file

@ -3,7 +3,7 @@
/**
* RX_VERSION is the version number of the Rhymix CMS.
*/
define('RX_VERSION', '2.1.17');
define('RX_VERSION', '2.1.18');
/**
* RX_MICROTIME is the startup time of the current script, in microseconds since the Unix epoch.
@ -85,7 +85,7 @@ else
/*
* RX_SSL is true if the current request uses SSL/TLS.
*/
if (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off')
if (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off')
{
define('RX_SSL', true);
}