From d6f6afbe457c3a7aa3f3e0d79bed7fbebb7fa501 Mon Sep 17 00:00:00 2001 From: Bastian Lederer Date: Tue, 25 Nov 2025 13:04:01 +0100 Subject: [PATCH] Replace backtick operator with `shell_exec()` The backtick operator is deprecated as of PHP 8.5. --- application/clicommands/WebCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/clicommands/WebCommand.php b/application/clicommands/WebCommand.php index 67d50a343..5a364a7c9 100644 --- a/application/clicommands/WebCommand.php +++ b/application/clicommands/WebCommand.php @@ -67,7 +67,7 @@ class WebCommand extends Command { // TODO: No, that's NOT what we want $prog = readlink('/proc/self/exe'); - `killall $prog`; + shell_exec("killall $prog"); } protected function forkAndExit()