fix [Ok] button of name popup was disabled, if user had no edit rights to a contact

This commit is contained in:
ralf 2024-04-04 18:50:02 +02:00
parent 7b815e4338
commit 6f375f12cc

View File

@ -2683,7 +2683,7 @@ class addressbook_ui extends addressbook_bo
if ($view) if ($view)
{ {
$readonlys['__ALL__'] = true; $readonlys['__ALL__'] = true;
$readonlys['button[cancel]'] = false; $readonlys['button[cancel]'] = $readonlys['button[ok]'] = false;
} }
$sel_options['fileas_type'] = $this->fileas_options($content); $sel_options['fileas_type'] = $this->fileas_options($content);
@ -2708,7 +2708,7 @@ class addressbook_ui extends addressbook_bo
if (!$this->is_admin() && !$content['owner'] && $content['account_id'] == $this->user && $this->own_account_acl && !$view) if (!$this->is_admin() && !$content['owner'] && $content['account_id'] == $this->user && $this->own_account_acl && !$view)
{ {
$readonlys['__ALL__'] = true; $readonlys['__ALL__'] = true;
$readonlys['button[cancel]'] = false; $readonlys['button[cancel]'] = $readonlys['button[ok]'] = false;
foreach($this->own_account_acl as $field) foreach($this->own_account_acl as $field)
{ {