upd: remove backtick

This commit is contained in:
2026-03-27 14:50:31 -04:00
parent 525c6a47a6
commit e03dd0aaf7

View File

@@ -8,7 +8,7 @@ if (!file_exists('/var/www/html/.env')) {
$cmd = getopt("", ["sqlite", "mysql", "mariadb", "pgsql", "shared"]);
$key = `openssl rand -base64 32 | tr -d '=' | tr -d '+' | tr -d '/' | tr -d ' '`;
$key = shell_exec("openssl rand -base64 32 | tr -d '=' | tr -d '+' | tr -d '/' | tr -d ' '");
$key = substr($key, 0, 32);
$database_url = null;
$getCreds = true;