diff --git a/ChangeLog b/ChangeLog index a3a9d3743..08f570eee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -110,6 +110,7 @@ danbarry + [lang] Spanish update, thanks to Daniel Hinostroza + [lang] Hungarian update, thanks to Jozsef Tamas Herczeg - dodika - bug #2113848 [navi] Page number after database switching +- patch #2115966 [GUI] Checkboxes and IE 7, thanks to Martin - maschg 2.11.9.2 (2008-09-22) - [security] XSS in MSIE using NUL byte, thanks to JPCERT. diff --git a/tbl_change.php b/tbl_change.php index e63ebb8df..a3cf90b54 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -196,7 +196,7 @@ $foreigners = PMA_getForeigners($db, $table); */ // loic1: autocomplete feature of IE kills the "onchange" event handler and it // must be replaced by the "onpropertychange" one in this case -$chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5) +$chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5 && PMA_USR_BROWSER_VER < 7) ? 'onpropertychange' : 'onchange'; // Had to put the URI because when hosted on an https server,