mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
same for list users or groups
This commit is contained in:
parent
141ff78bbc
commit
6fb70805cb
@ -207,7 +207,7 @@
|
|||||||
{
|
{
|
||||||
$var = Array(
|
$var = Array(
|
||||||
'class' => $this->nextmatchs->alternate_row_color('', True),
|
'class' => $this->nextmatchs->alternate_row_color('', True),
|
||||||
'group_name' => (!$account['account_lid']?' ':$account['account_lid']),
|
'group_name' => html::htmlspecialchars($account['account_lid']),
|
||||||
'delete_link' => $this->row_action('delete','group',$account['account_id'])
|
'delete_link' => $this->row_action('delete','group',$account['account_id'])
|
||||||
);
|
);
|
||||||
$p->set_var($var);
|
$p->set_var($var);
|
||||||
@ -467,7 +467,13 @@
|
|||||||
$account['account_status'].= '<br>'.common::show_date($account['account_modified'],$GLOBALS['egw_info']['user']['preferences']['common']['dateformat']);
|
$account['account_status'].= '<br>'.common::show_date($account['account_modified'],$GLOBALS['egw_info']['user']['preferences']['common']['dateformat']);
|
||||||
|
|
||||||
|
|
||||||
$p->set_var($account);
|
$p->set_var(array(
|
||||||
|
'account_id' => $account['account_id'],
|
||||||
|
'account_lid' => html::htmlspecialchars($account['account_lid']),
|
||||||
|
'account_firstname' => html::htmlspecialchars($account['account_firstname']),
|
||||||
|
'account_lastname' => html::htmlspecialchars($account['account_lastname']),
|
||||||
|
'account_email' => html::htmlspecialchars($account['account_email']),
|
||||||
|
));
|
||||||
|
|
||||||
if ($can_edit)
|
if ($can_edit)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user