* Added header('Status:...') calls so that some CGI installations

of apache emit proper headers (garvinhicking)
This commit is contained in:
Garvin Hicking
2008-08-22 09:20:13 +00:00
parent cb8d4da7fa
commit aa77cb9b1f
7 changed files with 13 additions and 1 deletions
+1
View File
@@ -74,6 +74,7 @@ if (!isset($_GET['nocache'])) {
(!$none_match && $modified_since == $last_modified) ||
(!$modified_since && $none_match == $last_modified)) {
header('HTTP/1.0 304 Not Modified');
header('Status: 304 Not Modified');
return;
}
}