blob: ada34e76fae2aacf15db633473b4cd69df7d3fe2 [file] [log] [blame]
<?php
$last_modified = gmdate(DATE_RFC1123, time() - 1);
header('Cache-Control: private, max-age=0, stale-while-revalidate=10');
header('Last-Modified: ' . $last_modified);
header('Content-Type: application/javascript');
echo('report("' . uniqid() . '");');
?>