Skip to content

Commit

Permalink
Check pcntl_signal() function on System Status page in the console PHP
Browse files Browse the repository at this point in the history
  • Loading branch information
freescout-help-desk committed Nov 18, 2023
1 parent 9dc73c2 commit c24efff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Misc/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -1931,7 +1931,7 @@ public static function checkRequiredFunctions()
'proc_open (PHP)' => function_exists('proc_open'),
'fpassthru (PHP)' => function_exists('fpassthru'),
'symlink (PHP)' => function_exists('symlink'),
'pcntl_signal (PHP)' => function_exists('pcntl_signal'),
'pcntl_signal (console PHP)' => (int)shell_exec('php -r "echo (int)function_exists(\'pcntl_signal\');"'),
'ps (shell)' => function_exists('shell_exec') ? shell_exec('ps') : false,
];
}
Expand Down

0 comments on commit c24efff

Please sign in to comment.