mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Fix infinite loop before sending mail caused by integrated actions with no app right
This commit is contained in:
parent
3ecb399454
commit
f5e2f7e719
@ -5595,6 +5595,11 @@ app.classes.mail = AppJS.extend(
|
||||
return true;
|
||||
}
|
||||
}
|
||||
// the to_tracker action might not be presented because lack of app permissions
|
||||
else if(integApps[index] == "to_tracker" && !toolbar.options.actions[integApps[index]])
|
||||
{
|
||||
return false;
|
||||
}
|
||||
else if(index<integApps.length)
|
||||
{
|
||||
this.compose_integrate_submit(++index);
|
||||
|
Loading…
Reference in New Issue
Block a user