check item id is set
This commit is contained in:
parent
6fcee1ee11
commit
bf49edde6b
1 changed files with 1 additions and 1 deletions
|
@ -978,7 +978,7 @@ class Share {
|
|||
// Check if the same owner shared with the user twice
|
||||
// through a group and user share - this is allowed
|
||||
$id = $targets[$row[$column]];
|
||||
if ($items[$id]['uid_owner'] == $row['uid_owner']) {
|
||||
if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) {
|
||||
// Switch to group share type to ensure resharing conditions aren't bypassed
|
||||
if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) {
|
||||
$items[$id]['share_type'] = self::SHARE_TYPE_GROUP;
|
||||
|
|
Loading…
Reference in a new issue