1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fix test
This commit is contained in:
Pierrick Charron
2012-12-21 11:49:00 -05:00

View File

@@ -5,6 +5,11 @@ Bug #63363 (CURL silently accepts boolean value for SSL_VERIFYHOST)
if (!extension_loaded("curl")) {
exit("skip curl extension not loaded");
}
$curl_version = curl_version();
if ($curl_version['version_number'] >= 0x071c01) {
exit("skip: test valid for libcurl < 7.28.1");
}
?>
--FILE--