Fix wrong variable use in Model\Item::getTopLevelParent
- It was preventing items at levels 3 and beyond to be inserted - Logging for missing top level parent has been bumped to notice
This commit is contained in:
parent
eebcf1ae86
commit
d3708cf1c2
1 changed files with 7 additions and 7 deletions
|
@ -1496,7 +1496,7 @@ class Item
|
||||||
$parent = self::selectFirst($fields, $condition, $params);
|
$parent = self::selectFirst($fields, $condition, $params);
|
||||||
|
|
||||||
if (!DBA::isResult($parent)) {
|
if (!DBA::isResult($parent)) {
|
||||||
Logger::info('item parent was not found - ignoring item', ['thr-parent' => $item['thr-parent'], 'uid' => $item['uid']]);
|
Logger::notice('item parent was not found - ignoring item', ['thr-parent' => $item['thr-parent'], 'uid' => $item['uid']]);
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1504,21 +1504,21 @@ class Item
|
||||||
return $parent;
|
return $parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
$condition = ['uri' => $item['parent-uri'],
|
$condition = ['uri' => $parent['parent-uri'],
|
||||||
'parent-uri' => $item['parent-uri'],
|
'parent-uri' => $parent['parent-uri'],
|
||||||
'uid' => $item['uid']];
|
'uid' => $parent['uid']];
|
||||||
// We select wall = 1 in priority for top level permission checks
|
// We select wall = 1 in priority for top level permission checks
|
||||||
$params = ['order' => ['wall' => true]];
|
$params = ['order' => ['wall' => true]];
|
||||||
$toplevel_parent = self::selectFirst($fields, $condition, $params);
|
$toplevel_parent = self::selectFirst($fields, $condition, $params);
|
||||||
|
|
||||||
if (!DBA::isResult($toplevel_parent)) {
|
if (!DBA::isResult($toplevel_parent)) {
|
||||||
Logger::info('item parent was not found - ignoring item', ['parent-uri' => $item['parent-uri'], 'uid' => $item['uid']]);
|
Logger::notice('item top level parent was not found - ignoring item', ['parent-uri' => $parent['parent-uri'], 'uid' => $parent['uid']]);
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($toplevel_parent['wall']
|
if ($toplevel_parent['wall']
|
||||||
&& $toplevel_parent['uid'] &&
|
&& $toplevel_parent['uid']
|
||||||
!self::isAllowedByUser($item, $toplevel_parent['uid'])
|
&& !self::isAllowedByUser($item, $toplevel_parent['uid'])
|
||||||
) {
|
) {
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue