Fix curl_copy_handle_basic_008.phpt when display_errors is On

(Thanks Chris Jones)
This commit is contained in:
Pierrick Charron 2011-12-08 18:57:01 +00:00
parent d0f7573b39
commit 4b860ccdad

View file

@ -1,5 +1,6 @@
<?php <?php
switch($_GET['test']) { $test = isset($_GET['test']) ? $_GET['test'] : null;
switch($test) {
case 'post': case 'post':
var_dump($_POST); var_dump($_POST);
break; break;