X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_functions.c;h=aae091d691a543c6846ea6a83d4c090cf34c073e;hp=642f335b6827b12dc8267b2407cb29e5f5c50145;hb=fa1a275e2b5e1b9dfb5bcbf97b51ef2b568e433c;hpb=a8a5b1e48e697c1e989c7b534e22de3ea1f7d561 diff --git a/http_functions.c b/http_functions.c index 642f335..aae091d 100644 --- a/http_functions.c +++ b/http_functions.c @@ -643,6 +643,7 @@ PHP_FUNCTION(http_throttle) * The HTTP response code will be set according to status. * You can use one of the following constants for convenience: * - HTTP_REDIRECT 302 Found + * - HTTP_REDIRECT_AUTO 303 See Other for POST, else 302 Found * - HTTP_REDIRECT_PERM 301 Moved Permanently * - HTTP_REDIRECT_POST 303 See Other * - HTTP_REDIRECT_TEMP 307 Temporary Redirect @@ -665,7 +666,7 @@ PHP_FUNCTION(http_redirect) size_t query_len = 0; zend_bool session = 0, free_params = 0; zval *params = NULL; - long status = 302; + long status = 0; char *query = NULL, *url = NULL, *URI, *LOC, *RED = NULL; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sa!/bl", &url, &url_len, ¶ms, &session, &status) != SUCCESS) {