mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-26 15:59:23 +01:00
"using egw_link::VFS_APPNAME constant instead of 'file'"
This commit is contained in:
parent
a670e8f4a3
commit
fb04a535b6
@ -858,25 +858,19 @@ 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)
|
||||
{
|
||||
// Special mangling for files so the files get copied
|
||||
foreach($content['link_to']['to_id'] as $link_id => &$link)
|
||||
if ($link['app'] == egw_link::VFS_APPNAME)
|
||||
{
|
||||
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'],
|
||||
);
|
||||
}
|
||||
$link['id'] = $link + array(
|
||||
'tmp_name' => egw_link::vfs_path($link['app2'], $link['id2']).'/'.$link['id'],
|
||||
'name' => $link['id'],
|
||||
);
|
||||
}
|
||||
}
|
||||
if($content['info_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