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'])) {
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!