Closed (fixed)
Project:
AdaptiveTheme
Version:
7.x-3.x-dev
Component:
Module Support
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Aug 2012 at 03:48 UTC
Updated:
6 Sep 2012 at 11:01 UTC
I found a defect in load.inc that displays IE not a defined index when using browsers other than IE. To fix the problem, I changed the code on line 596 from:
if ($crackers['ie']) {
to
if (isset($crackers['ie'])) {
Comments
Comment #1
Jeff Burnz commentedRight on, that should definitely have an isset() check, committed!