Browse Source

Merged changes

pull/158/head
Jordan Dukart 12 years ago
parent
commit
4653625429
  1. 4
      ObjectHelper.inc

4
ObjectHelper.inc

@ -185,6 +185,10 @@ class ObjectHelper {
//Set what headers we can...
if ($mimeType = $info['content_type']) {
drupal_set_header("Content-Type: $mimeType");
// Fixes an IE issue (ISLANDORA-311)
// http://support.microsoft.com/kb/316431
drupal_set_header("Cache-Control: private", TRUE);
if ($asAttachment) {
$suggestedFileName = "$label";
$pos = strpos($suggestedFileName, '.');

Loading…
Cancel
Save