Added test for bug #46739

This commit is contained in:
Mikko Koppanen 2008-12-05 11:21:15 +00:00
parent 2ba01be7ce
commit 09ff537b36

View File

@ -0,0 +1,13 @@
--TEST--
Test bug #46739
--FILE--
<?php
$ch = curl_init('http://127.0.0.1:9/');
curl_exec($ch);
$info = curl_getinfo($ch);
echo (array_key_exists('content_type', $info)) ? "set" : "not set";
?>
--EXPECT--
set