mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-05-28 04:02:39 -04:00
Replace backtick operator with shell_exec()
The backtick operator is deprecated as of PHP 8.5.
This commit is contained in:
parent
e9f6c7721d
commit
d6f6afbe45
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue