Merge branch 'MDL-57163-31' of https://github.com/vvzh/moodle into MOODLE_31_STABLE

This commit is contained in:
David Monllao
2016-11-29 11:41:59 +08:00
+6
View File
@@ -2326,6 +2326,12 @@ function check_unoconv_version(environment_results $result) {
*/
function check_libcurl_version(environment_results $result) {
if (!function_exists('curl_version')) {
$result->setInfo('cURL PHP extension is not installed');
$result->setStatus(false);
return $result;
}
// Supported version and version number.
$supportedversion = 0x071304;
$supportedversionstring = "7.19.4";