mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Make sure linked files get copied when copying an infolog
This commit is contained in:
parent
1310d56b7f
commit
a670e8f4a3
@ -858,6 +858,24 @@ class infolog_ui
|
||||
|
||||
// Get links to be copied
|
||||
$content['link_to']['to_id'] = egw_link::get_links($content['link_to']['to_app'], $content['link_to']['to_id']);
|
||||
if(is_array($content['link_to']['to_id']))
|
||||
{
|
||||
// Special mangling for files so the files get copied
|
||||
foreach($content['link_to']['to_id'] as $link_id => &$link)
|
||||
{
|
||||
if($link['app'] != 'file')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
else
|
||||
{
|
||||
$link['id'] = $link + array(
|
||||
'tmp_name' => egw_link::vfs_path($link['app2'], $link['id2']).'/'.$link['id'],
|
||||
'name' => $link['id'],
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
if($content['info_link_id']) {
|
||||
$info_link_id = $content['info_link_id'];
|
||||
unset($content['info_link_id']);
|
||||
|
Loading…
Reference in New Issue
Block a user