From fa68a06371dfea767a033c4fc70879d97b5db157 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 23 Nov 2002 23:55:13 +0000 Subject: [PATCH] knecke's fix for the usergroups with no title set any more, plus my headerline from .14 --- admin/inc/class.uiaccounts.inc.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/admin/inc/class.uiaccounts.inc.php b/admin/inc/class.uiaccounts.inc.php index f0b0b79ec1..e98482d412 100755 --- a/admin/inc/class.uiaccounts.inc.php +++ b/admin/inc/class.uiaccounts.inc.php @@ -799,9 +799,12 @@ } } - $perm_html = ''; + $perm_html = ''.lang('Application').' '.lang('ACL').''; + $perm_html = ''. + $perm_html.$perm_html."\n"; + $tr_color = $GLOBALS['phpgw_info']['theme']['row_off']; - for ($i=0;$perm_display[$i][1];$i++) + for ($i=0;$i < count($perm_display);$i++) { $app = $perm_display[$i][0]; if(!($i & 1)) @@ -811,7 +814,7 @@ } $perm_html .= '' . lang($perm_display[$i][1]) . '' . '' + . $perm_display[$i][0] . ']" value="True"'.($group_info['account_apps'][$app]?' checked':'').'>' . ($apps_with_acl[$app] && $group_info['account_id']?''
 					. lang('Grant Access').'':' ').''.($i & 1?'':'')."\n";