mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
* Addressbook - move photo change flag from import into vcal so it's always set if needed
This commit is contained in:
parent
8339ddd962
commit
18625abce8
@ -163,12 +163,6 @@ class addressbook_import_vcard implements importexport_iface_import_plugin {
|
||||
|
||||
$record['owner'] = $owner;
|
||||
|
||||
// If photo is set, we want to update it
|
||||
if($record['jpegphoto'])
|
||||
{
|
||||
$record['photo_unchanged'] = false;
|
||||
}
|
||||
|
||||
// Check that owner (addressbook) is allowed
|
||||
if(!array_key_exists($record['owner'], $this->bocontacts->get_addressbooks()))
|
||||
{
|
||||
|
@ -145,6 +145,7 @@ class addressbook_vcal extends addressbook_bo
|
||||
{
|
||||
if (($old_contact = $this->read($_abID)))
|
||||
{
|
||||
$contact['photo_unchanged'] = $old_contact['jpegphoto'] === $contact['jpegphoto'];
|
||||
if ($merge)
|
||||
{
|
||||
foreach (array_keys($contact) as $key)
|
||||
@ -177,6 +178,8 @@ class addressbook_vcal extends addressbook_bo
|
||||
}
|
||||
else
|
||||
{
|
||||
// If photo is set, we want to update it
|
||||
$contact['photo_unchanged'] = false;
|
||||
if (is_array($contact['cat_id']))
|
||||
{
|
||||
$contact['cat_id'] = implode(',',$this->find_or_add_categories($contact['cat_id'], -1));
|
||||
|
Loading…
Reference in New Issue
Block a user