Update share.php
Added isset for error: ``` Undefined index: file_target at /var/www/owncloud/lib/private/share/share.php#1911 ```
This commit is contained in:
parent
77792b5b7e
commit
b395ff549b
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 ($item['file_target']) {
|
||||
if (isset($item['file_target'])) {
|
||||
$statuses[$item[$column]]['path'] = $item['path'];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue