From a2ab5c1df24ee6a4fb3dff87ce7e272833d67280 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 26 Oct 2015 21:43:34 +0000 Subject: [PATCH] * Calendar: disabling Apply button for IE 10/11 and Edge, because all but current tab fail to load --- calendar/inc/class.calendar_uiforms.inc.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/calendar/inc/class.calendar_uiforms.inc.php b/calendar/inc/class.calendar_uiforms.inc.php index 486c566da9..55830c912d 100644 --- a/calendar/inc/class.calendar_uiforms.inc.php +++ b/calendar/inc/class.calendar_uiforms.inc.php @@ -1689,6 +1689,12 @@ class calendar_uiforms extends calendar_ui if (!empty($preserved['lock_token'])) $content['lock_token'] = $preserved['lock_token']; + // disabling Apply button for IE 10/11 and Edge, because all but current tab fail to load + if (html::$user_agent == 'msie' || html::$user_agent == 'edge') + { + $readonlys['button[apply]'] = true; + } + // non_interactive==true from $_GET calls immediate save action without displaying the edit form if(isset($_GET['non_interactive']) && (bool)$_GET['non_interactive'] === true) {