mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +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"));
|
$this->contentHeading(getMLText("missing_php_functions_and_classes"));
|
||||||
$missingfunc = [];
|
$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)) {
|
if(!function_exists($funcname)) {
|
||||||
$missingfunc[] = $funcname; //getMLText('func_'.$funcname."_missing")
|
$missingfunc[] = $funcname; //getMLText('func_'.$funcname."_missing")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user