Selaa lähdekoodia

Mod de check.php pour prendr ene compte le module curl

Bastien Sevajol 11 vuotta sitten
vanhempi
commit
dffe0bf225
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1 0
      app/check.php

+ 1 - 0
app/check.php Näytä tiedosto

@@ -41,6 +41,7 @@ check(function_exists('token_get_all'), 'Checking that the token_get_all() funct
41 41
 check(function_exists('mb_strlen'), 'Checking that the mb_strlen() function is available', 'Install and enable the mbstring extension', false);
42 42
 check(function_exists('iconv'), 'Checking that the iconv() function is available', 'Install and enable the iconv extension', false);
43 43
 check(function_exists('utf8_decode'), 'Checking that the utf8_decode() is available', 'Install and enable the XML extension', false);
44
+check(function_exists('curl_init'), 'Checking that the curl_init() is available', 'Install and enable the curl (php5-curl package) extension', false);
44 45
 if (PHP_OS != 'WINNT') {
45 46
     check(function_exists('posix_isatty'), 'Checking that the posix_isatty() is available', 'Install and enable the php_posix extension (used to colorized the CLI output)', false);
46 47
 }