mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
check for function system()
This commit is contained in:
parent
bb0f34a05a
commit
964bed081d
|
@ -116,7 +116,7 @@ class SeedDMS_View_Info extends SeedDMS_Theme_Style {
|
|||
|
||||
$this->contentHeading(getMLText("missing_php_functions_and_classes"));
|
||||
$missingfunc = [];
|
||||
foreach(array('proc_open', 'openssl_cipher_iv_length') as $funcname) {
|
||||
foreach(array('proc_open', 'openssl_cipher_iv_length', 'system') as $funcname) {
|
||||
if(!function_exists($funcname)) {
|
||||
$missingfunc[] = $funcname; //getMLText('func_'.$funcname."_missing")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user