Fix account selection missing members of non-primary groups

This commit is contained in:
Nathan Gray 2014-02-18 22:36:22 +00:00
parent aca00c49f7
commit c1689c7328

View File

@ -505,6 +505,7 @@ class etemplate_widget_menupopup extends etemplate_widget
if($select_pref == 'popup') break; if($select_pref == 'popup') break;
$no_lang = True; $no_lang = True;
$accs = array();
if(!$mygroups) if(!$mygroups)
{ {
$accs = $GLOBALS['egw']->accounts->search(array( $accs = $GLOBALS['egw']->accounts->search(array(
@ -516,7 +517,7 @@ class etemplate_widget_menupopup extends etemplate_widget
{ {
foreach($mygroups as $group) foreach($mygroups as $group)
{ {
$accs = $GLOBALS['egw']->accounts->search(array( $accs += $GLOBALS['egw']->accounts->search(array(
'type' => $group, 'type' => $group,
'order' => 'account_fullname', // order according to pref of how to display accounts 'order' => 'account_fullname', // order according to pref of how to display accounts
)); ));