mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-14 23:48:32 +01:00
* Addressbook: Fix files and entries linked to a new contact were not saved
This commit is contained in:
parent
a90819c396
commit
079bd586e3
@ -2304,7 +2304,7 @@ class addressbook_ui extends addressbook_bo
|
||||
}
|
||||
else
|
||||
{
|
||||
if (is_numeric($contact_id)) $content['link_to']['to_id'] = $contact_id;
|
||||
if ($contact_id && is_numeric($contact_id)) $content['link_to']['to_id'] = $contact_id;
|
||||
}
|
||||
// automatic link new entries to entries specified in the url
|
||||
if (!$contact_id && isset($_REQUEST['link_app']) && isset($_REQUEST['link_id']) && !is_array($content['link_to']['to_id']))
|
||||
@ -2943,7 +2943,7 @@ class addressbook_ui extends addressbook_bo
|
||||
{
|
||||
return array($contact_id);
|
||||
}
|
||||
|
||||
|
||||
$query['num_rows'] = -1;
|
||||
$query['start'] = 0;
|
||||
if(!array_key_exists('filter', $query))
|
||||
|
Loading…
Reference in New Issue
Block a user