aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/download/file.php
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-05-12 16:03:48 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-05-12 16:03:48 +0530
commitcae8c3603758cff7a75d8bbb3b5d15bae38e5692 (patch)
treeb3eee48ec03ddb88eb0fb6ede0dc831834ef559c /phpBB/download/file.php
parentb39e6e01b291f7a20a143ae3aea1a9582b0c4cad (diff)
downloadforums-cae8c3603758cff7a75d8bbb3b5d15bae38e5692.tar
forums-cae8c3603758cff7a75d8bbb3b5d15bae38e5692.tar.gz
forums-cae8c3603758cff7a75d8bbb3b5d15bae38e5692.tar.bz2
forums-cae8c3603758cff7a75d8bbb3b5d15bae38e5692.tar.xz
forums-cae8c3603758cff7a75d8bbb3b5d15bae38e5692.zip
[ticket/10820] fix regex
Extract IE version from user agent string and then compare it with 7 PHPBB3-10820
Diffstat (limited to 'phpBB/download/file.php')
-rw-r--r--phpBB/download/file.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php
index 2568455e53..d9ebaa4281 100644
--- a/phpBB/download/file.php
+++ b/phpBB/download/file.php
@@ -718,7 +718,15 @@ function file_gc()
*/
function phpbb_is_greater_ie7($user_agent)
{
- return (bool) preg_match('/msie [^67]+\\.*;/', strtolower($user_agent));
+ if (preg_match('/msie (\d+)/', strtolower($user_agent), $matches))
+ {
+ $ie_version = (int) $matches[1];
+ return ($ie_version > 7);
+ }
+ else
+ {
+ return false;
+ }
}
?> \ No newline at end of file