patch #2115966 [GUI] Checkboxes and IE 7

This commit is contained in:
Marc Delisle
2008-09-25 17:07:59 +00:00
parent 68969a1893
commit cb5f33c2a3
2 changed files with 2 additions and 1 deletions

View File

@@ -110,6 +110,7 @@ danbarry
+ [lang] Spanish update, thanks to Daniel Hinostroza + [lang] Spanish update, thanks to Daniel Hinostroza
+ [lang] Hungarian update, thanks to Jozsef Tamas Herczeg - dodika + [lang] Hungarian update, thanks to Jozsef Tamas Herczeg - dodika
- bug #2113848 [navi] Page number after database switching - 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) 2.11.9.2 (2008-09-22)
- [security] XSS in MSIE using NUL byte, thanks to JPCERT. - [security] XSS in MSIE using NUL byte, thanks to JPCERT.

View File

@@ -196,7 +196,7 @@ $foreigners = PMA_getForeigners($db, $table);
*/ */
// loic1: autocomplete feature of IE kills the "onchange" event handler and it // loic1: autocomplete feature of IE kills the "onchange" event handler and it
// must be replaced by the "onpropertychange" one in this case // 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' ? 'onpropertychange'
: 'onchange'; : 'onchange';
// Had to put the URI because when hosted on an https server, // Had to put the URI because when hosted on an https server,