From 964bed081dff4d3fc1f64128d772de80fb2c1e13 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 13 Nov 2024 22:30:15 +0100 Subject: [PATCH] check for function system() --- views/bootstrap/class.Info.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Info.php b/views/bootstrap/class.Info.php index f0f880e0d..119f85f10 100644 --- a/views/bootstrap/class.Info.php +++ b/views/bootstrap/class.Info.php @@ -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") }