From 2c5a1e6bdde646fd51f36eb31043be0783cea0b1 Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Sat, 13 Jan 2007 02:27:54 +0000 Subject: r20723: Web Application Framework - Clearly no one has ever tried to obtain the Referer from the web server before. :-) - Send the Referer from the web application, in preparation for later security updates. (These updates are not immediately necessary, as ScriptTransport is disabled and we check the content type on XmlHttpTransport. This isn't anything to worry about.) (This used to be commit 33c07f4b92ac349af85dff11e24111fb16d201d0) --- source4/web_server/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/web_server') diff --git a/source4/web_server/http.c b/source4/web_server/http.c index 3e89f084b3..30ca17411e 100644 --- a/source4/web_server/http.c +++ b/source4/web_server/http.c @@ -456,7 +456,7 @@ static void http_setup_arrays(struct esp_state *esp) } SETVAR(ESP_REQUEST_OBJ, "COOKIE_SUPPORT", web->input.cookie?"True":"False"); - SETVAR(ESP_HEADERS_OBJ, "HTT_REFERER", web->input.referer); + SETVAR(ESP_HEADERS_OBJ, "HTTP_REFERER", web->input.referer); SETVAR(ESP_HEADERS_OBJ, "HOST", web->input.host); SETVAR(ESP_HEADERS_OBJ, "ACCEPT_ENCODING", web->input.accept_encoding); SETVAR(ESP_HEADERS_OBJ, "ACCEPT_LANGUAGE", web->input.accept_language); -- cgit