From 2ff3cff70f2cffe2595b53b54e81fe72a9630a85 Mon Sep 17 00:00:00 2001 From: Berend de Boer Date: Thu, 17 May 2012 13:58:16 +1200 Subject: [PATCH] Do not use 307 but 302 response --- library/server/wsf/src/wsf_response.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/server/wsf/src/wsf_response.e b/library/server/wsf/src/wsf_response.e index 8c7fd735..15589d3e 100644 --- a/library/server/wsf/src/wsf_response.e +++ b/library/server/wsf/src/wsf_response.e @@ -330,7 +330,7 @@ feature -- Redirect require header_not_committed: not header_committed do - redirect_now_custom (a_url, {HTTP_STATUS_CODE}.temp_redirect, Void, Void) + redirect_now_custom (a_url, {HTTP_STATUS_CODE}.found, Void, Void) end redirect_now_with_content (a_url: READABLE_STRING_8; a_content: READABLE_STRING_8; a_content_type: READABLE_STRING_8)