mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
BugFix missing $item on 'file_target' Line 1911
I think this should be right!
This commit is contained in:
parent
687cd7fe83
commit
e70a7af6da
1 changed files with 1 additions and 1 deletions
|
|
@ -1908,7 +1908,7 @@ class Share extends \OC\Share\Constants {
|
|||
} else if (!isset($statuses[$item[$column]])) {
|
||||
$statuses[$item[$column]]['link'] = false;
|
||||
}
|
||||
if ('file_target') {
|
||||
if ($item['file_target']) {
|
||||
$statuses[$item[$column]]['path'] = $item['path'];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue