Merge pull request #1 from 0x00000FF/patch-1

Branch switching for CI pass
This commit is contained in:
Kangjun Heo == P.Knowledge 2021-03-28 21:00:38 +09:00 committed by GitHub
commit d83656d6ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -320,7 +320,9 @@ class installController extends install
$license_agreement_time = intval(trim(FileHandler::readFile($this->flagLicenseAgreement)));
if(isset($_SESSION['license_agreement']) && (!$license_agreement_time || ($license_agreement_time == $_SESSION['license_agreement'])))
{
if(ini_get('session.auto_start') == 0)
$sess_autostart = intval(ini_get('session.auto_start'));
if($sess_autostart === 0)
{
$checklist['session'] = true;
}