Check-in [5ffc720194]
Not logged in
Overview

SHA1 Hash:5ffc720194fc76a3c913339af5228c692b666791
Date: 2009-03-29 22:24:57
User: drh
Comment:Use "no-store" in place of "private" as the cache-control mode. Ticket b465b3bc2ceef4446b2ae770242ed0968e4dbc68.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/cgi.c from [4896124194] to [0db8ef4202].

@@ -320,11 +320,11 @@
   }
 
   /* Content intended for logged in users should only be cached in
   ** the browser, not some shared location.
   */
-  fprintf(g.httpOut, "Cache-control: private\r\n");
+  fprintf(g.httpOut, "Cache-control: no-store\r\n");
   fprintf(g.httpOut, "Content-Type: %s; charset=utf-8\r\n", zContentType);
   if( strcmp(zContentType,"application/x-fossil")==0 ){
     cgi_combine_header_and_body();
     blob_compress(&cgiContent[0], &cgiContent[0]);
   }