summaryrefslogtreecommitdiffstats
path: root/system/libraries/Zip.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2009-12-07 17:07:15 +0100
committerDerek Allard <derek.allard@ellislab.com>2009-12-07 17:07:15 +0100
commit8dc2c7cb55e33e96bc82e61985553192c9af4ebd (patch)
treec88d888ae0b549a8d6a0548eb4930958587bc681 /system/libraries/Zip.php
parent9fb6dd19f74c72cb98b6108a42575a98d3a9ba0c (diff)
Fixed an error in the Zip library that didn't allow downloading on PHP 4 servers.
Diffstat (limited to 'system/libraries/Zip.php')
-rw-r--r--system/libraries/Zip.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/system/libraries/Zip.php b/system/libraries/Zip.php
index f81da856c..4ed1f1820 100644
--- a/system/libraries/Zip.php
+++ b/system/libraries/Zip.php
@@ -325,11 +325,13 @@ class CI_Zip {
$filename .= '.zip';
}
- $zip_content =& $this->get_zip();
-
$CI =& get_instance();
$CI->load->helper('download');
+ $get_zip = $this->get_zip();
+
+ $zip_content =& $get_zip;
+
force_download($filename, $zip_content);
}