diff --git a/phpgwapi/inc/class.uiaccountsel.inc.php b/phpgwapi/inc/class.uiaccountsel.inc.php index 28c9225e1e..d7575c5b73 100644 --- a/phpgwapi/inc/class.uiaccountsel.inc.php +++ b/phpgwapi/inc/class.uiaccountsel.inc.php @@ -314,7 +314,7 @@ 'element_id' => $element_id, 'single' => $single, 'query_type' => $query_type, - 'query' => $query, + 'query' => $query, ); // -------------- list header variable template-declaration ------------------------ @@ -335,7 +335,6 @@ } $all_groups = $this->search(array( 'type' => 'groups', - 'app' => $app, )); foreach($all_groups as $group) { @@ -371,11 +370,6 @@ $link_data['group_id'] = $group_id; // reset it // --------------------------------- nextmatch --------------------------- - - // no overload for the first loading - if($query_type) - { - $users = $this->search(array( 'type' => $group_id ? $group_id : $use, 'app' => $app, @@ -385,7 +379,6 @@ 'query' => $query, 'query_type' => $query_type, )); - } // querytype $GLOBALS['phpgw']->template->set_var(array( 'left' => $this->nextmatchs->left('/index.php',$start,$this->total,$link_data+array('query'=>$query)), @@ -403,24 +396,21 @@ $GLOBALS['phpgw']->template->set_var('lang_firstname', lang("firstname")); $GLOBALS['phpgw']->template->set_var('lang_lastname', lang("lastname")); - if( is_array($users) ) + foreach($users as $user) { - foreach($users as $user) - { - $GLOBALS['phpgw']->template->set_var('tr_color',$this->nextmatchs->alternate_row_color($tr_color,True)); + $GLOBALS['phpgw']->template->set_var('tr_color',$this->nextmatchs->alternate_row_color($tr_color,True)); - // ---------------- template declaration for list records -------------------------- +// ---------------- template declaration for list records -------------------------- - $GLOBALS['phpgw']->template->set_var(array( - 'lid' => $user['account_lid'], - 'firstname' => $user['account_firstname'] ? $user['account_firstname'] : ' ', - 'lastname' => $user['account_lastname'] ? $user['account_lastname'] : ' ', - 'onclick' => "addOption('$element_id','". - $GLOBALS['phpgw']->common->grab_owner_name($user['account_id'])."','$user[account_id]')". - ($single ? '; window.close()' : ''), - )); - $GLOBALS['phpgw']->template->fp('list','accounts_list',True); - } + $GLOBALS['phpgw']->template->set_var(array( + 'lid' => $user['account_lid'], + 'firstname' => $user['account_firstname'] ? $user['account_firstname'] : ' ', + 'lastname' => $user['account_lastname'] ? $user['account_lastname'] : ' ', + 'onclick' => "addOption('$element_id','". + $GLOBALS['phpgw']->common->grab_owner_name($user['account_id'])."','$user[account_id]')". + ($single ? '; window.close()' : ''), + )); + $GLOBALS['phpgw']->template->fp('list','accounts_list',True); } $GLOBALS['phpgw']->template->set_var('accountsel_icon',$this->html->image('phpgwapi','users-big'));