diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-11 21:08:57 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-11 21:08:57 +0100 |
commit | 3d933b6fad72d4b92f18187dd57f1d3c35f8936a (patch) | |
tree | 3a6188b9ce1d83f4c2f32b0fcbeb94f4d6aeef0d /system/helpers | |
parent | fce2ed6d1d3026c485e79ce5bf236effc67981be (diff) |
Fix erroneus regex from previous commit
Diffstat (limited to 'system/helpers')
-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 34f9bc07d..96ff29dec 100644 --- a/system/helpers/download_helper.php +++ b/system/helpers/download_helper.php @@ -96,7 +96,7 @@ if ( ! function_exists('force_download')) * * Reference: http://digiblog.de/2011/04/19/android-and-the-download-file-headers/ */ - if (count($x) !== 1 && isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/Android\s(1|2\.[12])/', $_SERVER['HTTP_USER_AGENT'])) + if (count($x) !== 1 && isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/Android\s(1|2\.[01])/', $_SERVER['HTTP_USER_AGENT'])) { $x[count($x) - 1] = strtoupper($extension); $filename = implode('.', $x); |