diff options
author | jcid <devnull@localhost> | 2008-05-10 21:52:09 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-05-10 21:52:09 +0200 |
commit | c6ee10ee8581770e349255237f87e58c7291b0ec (patch) | |
tree | ad41a86303cd796bfaff6c534604ecba4fa7a41d /src/IO/http.c | |
parent | 420f1e34eaff259a202384618c28bf43c80c5d9e (diff) |
+ Fixed a bug in the code that remembers the scrolling position.
Diffstat (limited to 'src/IO/http.c')
-rw-r--r-- | src/IO/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IO/http.c b/src/IO/http.c index 702fc23c..46a2f313 100644 --- a/src/IO/http.c +++ b/src/IO/http.c @@ -267,7 +267,7 @@ Dstr *a_Http_make_query_str(const DilloUrl *url, bool_t use_proxy) "%s" "\r\n", full_path->str, - (URL_FLAGS(url) & URL_E2EReload) ? + (URL_FLAGS(url) & URL_E2EQuery) ? "Cache-Control: no-cache\r\nPragma: no-cache\r\n" : "", URL_HOST(url), s_port->str, proxy_auth->str, referer, VERSION, cookies); |