This commit is contained in:
Yuri Kuznetsov
2024-09-15 13:01:35 +03:00
parent 7d5ceb3c61
commit 9e30e60fb1
140 changed files with 359 additions and 718 deletions

View File

@@ -82,8 +82,7 @@ if (session_status() != \PHP_SESSION_ACTIVE) {
$installerConfig->set('cliSessionId', session_id());
$installerConfig->save();
}
else {
} else {
session_id($installerConfig->get('cliSessionId'));
}
}
@@ -92,8 +91,7 @@ ob_start();
try {
require('entry.php');
}
catch (\Throwable $e) {
} catch (\Throwable $e) {
fwrite(\STDOUT, "Error: ". $e->getMessage() .".\n");
exit;