Skip to content
Snippets Groups Projects
Commit 57b8ff89 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

check if PHP mod GD is installed

parent d24abc3b
No related branches found
No related tags found
No related merge requests found
...@@ -240,6 +240,9 @@ class OC_Util { ...@@ -240,6 +240,9 @@ class OC_Util {
if(!function_exists('json_encode')){ if(!function_exists('json_encode')){
$errors[]=array('error'=>'PHP module JSON is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.'); $errors[]=array('error'=>'PHP module JSON is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
} }
if(!function_exists('imagepng')){
$errors[]=array('error'=>'PHP module GD is not installed.<br/>','hint'=>'Please ask your server administrator to install the module.');
}
return $errors; return $errors;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment