fix registered account was lacking owner=0 and some missing translations

This commit is contained in:
ralf 2024-04-03 15:14:25 +02:00
parent 30604b9d67
commit f9545835fa

View File

@ -913,7 +913,7 @@ class Contacts extends Contacts\Storage
{ {
if (!isset($contact['owner']) || !isset($contact['private'])) // owner/private not set on update, eg. SyncML if (!isset($contact['owner']) || !isset($contact['private'])) // owner/private not set on update, eg. SyncML
{ {
if (($old = $this->read($contact['id']) ?: null)) // --> try reading the old entry and set it from there if (($old = $this->read($contact['id'], $ignore_acl) ?: null)) // --> try reading the old entry and set it from there
{ {
if(!isset($contact['owner'])) if(!isset($contact['owner']))
{ {