fix memset arg order
[m6w6/ext-http] / tests / response003.phpt
index f83df3b8656f1a3d28579ec6d865d66c9586913b..d2f91c1e59b30eeec3a9558f675ef506dd67bc97 100644 (file)
@@ -12,7 +12,7 @@ a=b
 $r = new http\Env\Response;
 $r->setContentType("text/plain");
 $r->setContentDisposition(
-    ["attachment" => ["filename" => basename(__FILE__)]]
+    array("attachment" => array(array("filename" => basename(__FILE__))))
 );
 $r->setBody(new http\Message\Body(fopen(__FILE__, "rb")));
 $r->send();