From f9545835fa6f4dc41927f794f5d06bd7eb29df8d Mon Sep 17 00:00:00 2001 From: ralf Date: Wed, 3 Apr 2024 15:14:25 +0200 Subject: [PATCH] fix registered account was lacking owner=0 and some missing translations --- api/src/Contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Contacts.php b/api/src/Contacts.php index 71ac24ba14..0bb1f0c29e 100755 --- a/api/src/Contacts.php +++ b/api/src/Contacts.php @@ -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 (($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'])) {