mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 09:02:45 +08:00
Resolve Call to undefined function shell_exec
#1496
This commit is contained in:
parent
89e80bf124
commit
5657af7238
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ abstract class Base
|
|||
|
||||
public static function isSupported() : bool
|
||||
{
|
||||
return \is_callable('proc_open');
|
||||
return \is_callable('shell_exec') && \is_callable('proc_open');
|
||||
}
|
||||
|
||||
protected function listDecryptKeys(/*string|resource*/ $input, /*string|resource*/ $output = null)
|
||||
|
|
Loading…
Reference in a new issue