summaryrefslogtreecommitdiffstats
path: root/system/helpers/download_helper.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-02-29 18:02:46 +0100
committerAndrey Andreev <narf@bofh.bg>2012-02-29 18:02:46 +0100
commitdb0c06247949a4def38bcb0c0cf1239312140a81 (patch)
tree56a98e57365cd02fc1685617162c5ec26e3ce055 /system/helpers/download_helper.php
parent0df831d31f00d1b00b17a452dec04a17aaeb825f (diff)
Change end() usage due to E_STRICT messages
Diffstat (limited to 'system/helpers/download_helper.php')
-rw-r--r--system/helpers/download_helper.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/system/helpers/download_helper.php b/system/helpers/download_helper.php
index 34380cc88..a8c59c2c0 100644
--- a/system/helpers/download_helper.php
+++ b/system/helpers/download_helper.php
@@ -70,7 +70,8 @@ if ( ! function_exists('force_download'))
return FALSE;
}
- $extension = end(explode('.', $filename));
+ $extension = explode('.', $filename);
+ $extension = end($extension);
// Load the mime types
if (defined('ENVIRONMENT') && is_file(APPPATH.'config/'.ENVIRONMENT.'/mimes.php'))