From e03dd0aaf7970180c2b90eaa97986bedbff2c076 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Fri, 27 Mar 2026 14:50:31 -0400 Subject: [PATCH] upd: remove backtick --- setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.php b/setup.php index 68ebce0..daba584 100755 --- a/setup.php +++ b/setup.php @@ -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;