Browse Source

Fix to let handles resolve correctly in IE.

pull/157/head
Jordan Dukart 13 years ago
parent
commit
1c8d600673
  1. 2
      ObjectHelper.inc

2
ObjectHelper.inc

@ -231,6 +231,8 @@ class ObjectHelper {
if (($contentSize = self::getDatastreamSize($pid, $dsID, TRUE)) > 0) { if (($contentSize = self::getDatastreamSize($pid, $dsID, TRUE)) > 0) {
drupal_set_header("Content-Length: $contentSize"); drupal_set_header("Content-Length: $contentSize");
// Fixes an IE issue
drupal_set_header("Cache-Control: private", TRUE);
} }
$opts = array( $opts = array(

Loading…
Cancel
Save