diff options
author | Fredrik Gustafsson <[email protected]> | 2013-08-22 15:36:13 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-08-22 15:36:13 +0200 |
commit | 5e2f9c13426ad4048d563c730bf29f8b677e6fb5 (patch) | |
tree | d58ba7a398a9252af26a6379b8f8e709e41772fd /lib/inets/src/http_server/httpd_response.erl | |
parent | 4f61d1501e47d824a5c761300e8a21d9c5f1c5b7 (diff) | |
parent | 424021bb4253cbf0f864b97666497b82b5da66c1 (diff) | |
download | otp-5e2f9c13426ad4048d563c730bf29f8b677e6fb5.tar.gz otp-5e2f9c13426ad4048d563c730bf29f8b677e6fb5.tar.bz2 otp-5e2f9c13426ad4048d563c730bf29f8b677e6fb5.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/inets/src/http_server/httpd_response.erl')
-rw-r--r-- | lib/inets/src/http_server/httpd_response.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/inets/src/http_server/httpd_response.erl b/lib/inets/src/http_server/httpd_response.erl index 6b6532266b..a45b04f275 100644 --- a/lib/inets/src/http_server/httpd_response.erl +++ b/lib/inets/src/http_server/httpd_response.erl @@ -20,7 +20,7 @@ -module(httpd_response). -export([generate_and_send_response/1, send_status/3, send_header/3, send_body/3, send_chunk/3, send_final_chunk/2, split_header/2, - is_disable_chunked_send/1, cache_headers/1]). + is_disable_chunked_send/1, cache_headers/2]). -export([map_status_code/2]). -include("httpd.hrl"). @@ -266,8 +266,8 @@ get_connection(false,"HTTP/1.1") -> get_connection(_,_) -> "". -cache_headers(#mod{config_db = Db}) -> - case httpd_util:lookup(Db, script_nocache, false) of +cache_headers(#mod{config_db = Db}, NoCacheType) -> + case httpd_util:lookup(Db, NoCacheType, false) of true -> Date = httpd_util:rfc1123_date(), [{"cache-control", "no-cache"}, |