- HttpRequest::encodeBody() is also available if curl_formget() is in libcurl
[m6w6/ext-http] / http_request_object.c
index 3f37f46f9ada3d1549d8ccbf474f6ed4985973ba..3fbfdbf61d198262d57ec2c58bec84a459be6e2b 100644 (file)
@@ -334,7 +334,7 @@ zend_function_entry http_request_object_fe[] = {
        HTTP_REQUEST_ALIAS(methodUnregister, http_request_method_unregister)
        HTTP_REQUEST_ALIAS(methodName, http_request_method_name)
        HTTP_REQUEST_ALIAS(methodExists, http_request_method_exists)
-#ifdef HAVE_CURL_GETFORMDATA
+#if defined(HAVE_CURL_GETFORMDATA) || defined(HAVE_CURL_FORMGET)
        HTTP_REQUEST_ALIAS(encodeBody, http_request_body_encode)
 #endif
        EMPTY_FUNCTION_ENTRY
@@ -732,6 +732,8 @@ STATUS _http_request_object_responsehandler(http_request_object *obj, zval *this
                zval_ptr_dtor(&param);
        }
        
+       http_request_set_progress_callback(obj->request, NULL);
+       
        return ret;
 }