mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Update share.php
change isset with empty on line 1911
This commit is contained in:
parent
b395ff549b
commit
cd88c2fd7b
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 (isset($item['file_target'])) {
|
||||
if (!empty($item['file_target'])) {
|
||||
$statuses[$item[$column]]['path'] = $item['path'];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue