IE11 browser detection and fixes
IE11 has some issues with vB5 as it stands now due to bad browser detection. These changes should address the issues at hand until the software is patched.
In core/includes/functions.php find: PHP Code:
Add above: PHP Code:
Next, find: PHP Code:
if (strpos($useragent, 'gecko') !== false AND !$is['safari'] AND !$is['konqueror'])
And replace it with PHP Code:
if (strpos($useragent, 'gecko') !== false AND !$is['safari'] AND !$is['konqueror'] AND !$is['ie'])
Next, we have one more change to make: In /includes/vb5/frontend/controller.php Find PHP Code:
if (isset($_SERVER['HTTP_USER_AGENT']) &&
PHP Code:
// IE11+ detection, MS changed the UA
Download No files for download. |
Similar Mods
Integration with vBulletin Mobile Device & Browser Detection (Adapted by BOP5) | vBulletin 4.x Add-ons |
Miscellaneous Hacks IE11 browser detection and fixes | vBulletin 4.x Add-ons |
Miscellaneous Hacks IE11 browser detection and fixes | vBulletin 3.8 Add-ons |