mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 01:29:05 +01:00
* Calendar: disabling Apply button for IE 10/11 and Edge, because all but current tab fail to load
This commit is contained in:
parent
5e8781078c
commit
a2ab5c1df2
@ -1689,6 +1689,12 @@ class calendar_uiforms extends calendar_ui
|
|||||||
|
|
||||||
if (!empty($preserved['lock_token'])) $content['lock_token'] = $preserved['lock_token'];
|
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
|
// non_interactive==true from $_GET calls immediate save action without displaying the edit form
|
||||||
if(isset($_GET['non_interactive']) && (bool)$_GET['non_interactive'] === true)
|
if(isset($_GET['non_interactive']) && (bool)$_GET['non_interactive'] === true)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user