mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Fix: The acl lookup now works in multi threaded posts as well
This commit is contained in:
parent
4a0781db19
commit
83c4c86251
1 changed files with 7 additions and 1 deletions
|
@ -32,7 +32,7 @@ function acl_content(App $a)
|
|||
$search = $_REQUEST['query'];
|
||||
}
|
||||
|
||||
logger('Searching for ' . $search . ' - type ' . $type, LOGGER_DEBUG);
|
||||
logger("Searching for ".$search." - type ".$type." conversation ".$conv_id, LOGGER_DEBUG);
|
||||
|
||||
if ($search != '') {
|
||||
$sql_extra = "AND `name` LIKE '%%" . dbesc($search) . "%%'";
|
||||
|
@ -239,6 +239,12 @@ function acl_content(App $a)
|
|||
$items = array_merge($groups, $contacts);
|
||||
|
||||
if ($conv_id) {
|
||||
// In multi threaded posts the conv_id is not the parent of the whole thread
|
||||
$parent_item = dba::selectFirst('item', ['parent'], ['id' => $conv_id]);
|
||||
if (DBM::is_result($parent_item)) {
|
||||
$conv_id = $parent_item['parent'];
|
||||
}
|
||||
|
||||
/*
|
||||
* if $conv_id is set, get unknown contacts in thread
|
||||
* but first get known contacts url to filter them out
|
||||
|
|
Loading…
Reference in a new issue