From d6d6155a61427567b778d0a199109f0558c3eaaa Mon Sep 17 00:00:00 2001 From: Jordan Dukart Date: Wed, 20 Feb 2013 14:52:44 -0400 Subject: [PATCH] Flush the caches before we output so we don't overrun PHP memory limit. --- includes/datastream.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/datastream.inc b/includes/datastream.inc index 9bc94f2d..b817b70d 100644 --- a/includes/datastream.inc +++ b/includes/datastream.inc @@ -43,6 +43,7 @@ function islandora_view_datastream(FedoraDatastream $datastream, $download = FAL } drupal_page_is_cacheable(FALSE); // Try not to load the file into PHP memory! + ob_end_flush(); $datastream->getContent('php://output'); exit(); }