diff options
author | ytetsuro <phper.0o0@gmail.com> | 2018-02-14 08:32:41 +0100 |
---|---|---|
committer | ytetsuro <phper.0o0@gmail.com> | 2018-02-14 08:32:41 +0100 |
commit | b7ca09f989ae344682395d16402bcf07062dd655 (patch) | |
tree | b10dad36da2c3de127f3dec4d0829288458b9b06 /system | |
parent | c82f3236069fae1f21a0900b026d346752d089c9 (diff) |
Delete unnecessary assignment expressions
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/download_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/download_helper.php b/system/helpers/download_helper.php index 000e4c707..901e3277c 100644 --- a/system/helpers/download_helper.php +++ b/system/helpers/download_helper.php @@ -151,7 +151,7 @@ if ( ! function_exists('force_download')) // so we have to make it conditional ... $charset = strtoupper(config_item('charset')); $utf8_filename = ($charset !== 'UTF-8') - ? $utf8_filename = get_instance()->utf8->convert_to_utf8($filename, $charset) + ? get_instance()->utf8->convert_to_utf8($filename, $charset) : $filename; isset($utf8_filename[0]) && $utf8_filename = " filename*=UTF-8''".rawurlencode($utf8_filename); |