mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: Fix test
This commit is contained in:
commit
9d235eadc8
1 changed files with 5 additions and 0 deletions
|
@ -5,6 +5,11 @@ Bug #63363 (CURL silently accepts boolean value for SSL_VERIFYHOST)
|
||||||
if (!extension_loaded("curl")) {
|
if (!extension_loaded("curl")) {
|
||||||
exit("skip curl extension not loaded");
|
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--
|
--FILE--
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue