added correct check for gd and check for php-intl

remotes/origin/stable6
Bernhard Posselt 13 years ago
parent 5bb248efd6
commit 16b513e4dc
  1. 7
      lib/util.php

@ -247,11 +247,16 @@ class OC_Util {
'hint'=>'Please ask your server administrator to install the module.');
$web_server_restart= false;
}
if(!function_exists('imagepng')) {
if(!extension_loaded('gd') || !function_exists('gd_info')) {
$errors[]=array('error'=>'PHP module GD is not installed.',
'hint'=>'Please ask your server administrator to install the module.');
$web_server_restart= false;
}
if(!class_exists('Locale')) {
$errors[]=array('error'=>'PHP module intl is not installed.',
'hint'=>'Please ask your server administrator to install the module.');
$web_server_restart= false;
}
if(!function_exists('gzencode')) {
$errors[]=array('error'=>'PHP module zlib is not installed.',
'hint'=>'Please ask your server administrator to install the module.');

Loading…
Cancel
Save