Merge pull request #9561 from libasys/patch-3
Fix Error undefined index: file_target
This commit is contained in:
commit
61b5a770e4
|
@ -1905,7 +1905,7 @@ class Share extends \OC\Share\Constants {
|
|||
} else if (!isset($statuses[$item[$column]])) {
|
||||
$statuses[$item[$column]]['link'] = false;
|
||||
}
|
||||
if ($item['file_target']) {
|
||||
if (!empty($item['file_target'])) {
|
||||
$statuses[$item[$column]]['path'] = $item['path'];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue