Fix indentation in /speed and /test dirs, closes gh-780.

This commit is contained in:
Trey Hunner
2012-05-18 13:28:50 -04:00
committed by Dave Methvin
parent c4df0c91be
commit f1dcaad097
18 changed files with 646 additions and 646 deletions

View File

@@ -5,8 +5,8 @@ $ts = $_REQUEST['ts'];
$ifModifiedSince = isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? stripslashes($_SERVER['HTTP_IF_MODIFIED_SINCE']) : false;
if ($ifModifiedSince == $ts) {
header('HTTP/1.0 304 Not Modified');
die; // stop processing
header('HTTP/1.0 304 Not Modified');
die; // stop processing
}
header("Last-Modified: " . $ts);