Check for iconv
This commit is contained in:
parent
55277c8e5a
commit
228a05a792
1 changed files with 4 additions and 1 deletions
|
@ -296,7 +296,10 @@ class OC_Util {
|
|||
$errors[]=array('error'=>'PHP module zlib is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
|
||||
$web_server_restart= false;
|
||||
}
|
||||
|
||||
if(!function_exists('iconv')) {
|
||||
$errors[]=array('error'=>'PHP module iconv is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
|
||||
$web_server_restart= false;
|
||||
}
|
||||
if(!function_exists('simplexml_load_string')) {
|
||||
$errors[]=array('error'=>'PHP module SimpleXML is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
|
||||
$web_server_restart= false;
|
||||
|
|
Loading…
Reference in a new issue