diff --git a/core/class/helper.class.php b/core/class/helper.class.php index d7706a6e..1d45c522 100755 --- a/core/class/helper.class.php +++ b/core/class/helper.class.php @@ -26,7 +26,8 @@ class helper { public static function urlGetContents ($url) { if(function_exists('file_get_contents') and ini_get('allow_url_fopen') ){ - $url_get_contents_data = file_get_contents($url); + var_dump(function_exists('file_get_contents')); + $url_get_contents_data = @file_get_contents($url); // Masque un warning éventuel }elseif(function_exists('fopen') && function_exists('stream_get_contents' && ini_get('allow_url_fopen') )){ diff --git a/core/core.php b/core/core.php index 810b5f0b..05d853a5 100755 --- a/core/core.php +++ b/core/core.php @@ -36,7 +36,7 @@ class common { const THUMBS_WIDTH = 640; // Numéro de version - const ZWII_VERSION = '10.0.092'; + const ZWII_VERSION = '10.0.093'; const ZWII_UPDATE_CHANNEL = "v10"; public static $actions = [];