Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiyush <poush12@gmail.com>2016-02-19 21:05:07 +0300
committerPiyush Agrawal <poush12@gmail.com>2016-02-20 09:56:54 +0300
commit1d3f8ed037f5aed6f40c73ac40e55be868bdf99d (patch)
tree74330f770ce4090578502b1636a68f3710fb1709 /tbl_change.php
parentfec3043754aca2802ef4ac61e46cd5730a7ab466 (diff)
remove_msie9 (fix_11987)
Signed-off-by: Piyush Agrawal <poush12@gmail.com>
Diffstat (limited to 'tbl_change.php')
-rw-r--r--tbl_change.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/tbl_change.php b/tbl_change.php
index 2022abd487..a387e6a529 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -111,12 +111,7 @@ $_form_params = PMA_getFormParametersForInsertForm(
*/
// 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
- && PMA_USR_BROWSER_VER < 7
-)
- ? 'onpropertychange'
- : 'onchange';
+$chg_evt_handler = 'onchange';
// Had to put the URI because when hosted on an https server,
// some browsers send wrongly this form to the http server.