Browse Source

Eric's bug: don't send HTTP/1.1 304 if the headers are already sent

replace/c24a8d1de403113542ba0936e844151de2785013
Martin Monperrus 15 years ago
parent
commit
6cc106e418
  1. 2
      bibtexbrowser.php

2
bibtexbrowser.php

@ -329,7 +329,7 @@ function setDB() {
$bib_is_unmodified $bib_is_unmodified
&& (strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])>filemtime($bib)); && (strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])>filemtime($bib));
} // end for each } // end for each
if ( $bib_is_unmodified ) {
if ( $bib_is_unmodified && !headers_sent()) {
header("HTTP/1.1 304 Not Modified"); header("HTTP/1.1 304 Not Modified");
exit; exit;
} }

Loading…
Cancel
Save