Changeset 1704 in ExiteCMS


Ignore:
Timestamp:
08/27/08 21:05:13 (3 years ago)
Author:
hverton
Message:

added a no-cache header to avoid caching of ajaxcalls results by proxies

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/ajax.response.php

    r1667 r1704  
    1111+----------------------------------------------------*/ 
    1212require "core_functions.php"; 
     13 
     14// make sure the page isn't cached 
     15header("Cache-Control: no-cache, no-store, must-revalidate"); 
     16header("Pragma: no-cache"); 
    1317 
    1418// get the request field, sanitize it, and check it's availability 
Note: See TracChangeset for help on using the changeset viewer.