summaryrefslogtreecommitdiffstats
path: root/system/helpers/download_helper.php
diff options
context:
space:
mode:
authorGeorge PETCULESCU <george.petculescu@zitec.com>2016-11-01 15:10:59 +0100
committerGeorge PETCULESCU <george.petculescu@zitec.com>2016-11-01 15:10:59 +0100
commit49407be71a80d67151a296be25fff2468c68ab55 (patch)
treed7ff40578a854b229724de8960007039a67a326c /system/helpers/download_helper.php
parent3e86cc27d531e15c7d7dc7c606f87e1694272f92 (diff)
strict comparison of 1.
Diffstat (limited to 'system/helpers/download_helper.php')
-rw-r--r--system/helpers/download_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/download_helper.php b/system/helpers/download_helper.php
index 43c3924a3..9619c61b1 100644
--- a/system/helpers/download_helper.php
+++ b/system/helpers/download_helper.php
@@ -72,7 +72,7 @@ if ( ! function_exists('force_download'))
// Is $filename an array as ['local source path' => 'destination filename']?
if (is_array($filename))
{
- if (count($filename) != 1)
+ if (count($filename) !== 1)
{
return;
}