mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 16:29:22 +01:00
fix: timezone was not displayed in view-mode
This commit is contained in:
parent
a14e5bc8c2
commit
df76b59edb
@ -215,6 +215,10 @@ class uicontacts extends bocontacts
|
||||
$readonlys['button[save]'] = $readonlys['button[apply]'] = true;
|
||||
$readonlys['button[delete]'] = !$this->check_perms(EGW_ACL_DELETE,$content);
|
||||
$readonlys['button[edit]'] = !$this->check_perms(EGW_ACL_EDIT,$content);
|
||||
|
||||
for($i = -23; $i<=23; $i++) $tz[$i] = ($i > 0 ? '+' : '').$i;
|
||||
$sel_options['tz'] = $tz;
|
||||
$content['tz'] = $content['tz'] ? $content['tz'] : 0;
|
||||
|
||||
$this->tmpl->read('addressbook.edit');
|
||||
foreach(array('email','email_home','url') as $name)
|
||||
|
Loading…
Reference in New Issue
Block a user