Skip to content

Commit

Permalink
Fix missing merge into document actions for shares when the directory…
Browse files Browse the repository at this point in the history
… had many files
  • Loading branch information
nathangray committed Jun 6, 2019
1 parent c74d118 commit 047af47
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions api/src/Contacts/Merge.php
Expand Up @@ -287,6 +287,11 @@ public static function document_action($dirs, $group=0, $caption='Insert in docu

protected static function customise_mail_actions(&$action)
{
if ($action['children']['message/rfc822'])
{
// Just email already filtered out
$action['children'] = $action['children']['message/rfc822']['children'];
}
if(strpos($action['egw_open'], 'edit-mail') === 0)
{
unset($action['confirm_multiple']);
Expand Down

0 comments on commit 047af47

Please sign in to comment.