- PHP4 always sends 302 on redirects
authorMichael Wallner <mike@php.net>
Fri, 6 Jan 2006 23:43:39 +0000 (23:43 +0000)
committerMichael Wallner <mike@php.net>
Fri, 6 Jan 2006 23:43:39 +0000 (23:43 +0000)
http_functions.c

index aae091d691a543c6846ea6a83d4c090cf34c073e..cbf9ad657d69c28a6b3a1170856c98e5ec988a65 100644 (file)
@@ -666,7 +666,7 @@ PHP_FUNCTION(http_redirect)
        size_t query_len = 0;
        zend_bool session = 0, free_params = 0;
        zval *params = NULL;
-       long status = 0;
+       long status = HTTP_REDIRECT_AUTO;
        char *query = NULL, *url = NULL, *URI, *LOC, *RED = NULL;
 
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sa!/bl", &url, &url_len, &params, &session, &status) != SUCCESS) {
@@ -721,7 +721,13 @@ PHP_FUNCTION(http_redirect)
                zval_dtor(params);
                FREE_ZVAL(params);
        }
-
+       
+#ifndef ZEND_ENGINE_2
+       if (!status && SG(request_info).request_method && !strcasecmp(SG(request_info).request_method, "POST")) {
+               status = HTTP_REDIRECT_POST;
+       }
+#endif
+       
        RETURN_SUCCESS(http_exit_ex(status, LOC, RED, 1));
 }
 /* }}} */