Bugfix: hide savedsearch butten and subthread button for non local_users

This commit is contained in:
rabuzarus 2018-06-19 18:27:54 +02:00
parent fc06980dcd
commit 0a97a3f822
2 changed files with 7 additions and 2 deletions

View File

@ -984,7 +984,7 @@ function search($s, $id = 'search-box', $url = 'search', $save = false, $aside =
'$action_url' => $url, '$action_url' => $url,
'$search_label' => L10n::t('Search'), '$search_label' => L10n::t('Search'),
'$save_label' => $save_label, '$save_label' => $save_label,
'$savedsearch' => Feature::isEnabled(local_user(),'savedsearch'), '$savedsearch' => local_user() && Feature::isEnabled(local_user(),'savedsearch'),
'$search_hint' => L10n::t('@name, !forum, #tags, content'), '$search_hint' => L10n::t('@name, !forum, #tags, content'),
'$mode' => $mode '$mode' => $mode
]; ];

View File

@ -346,7 +346,12 @@ function frio_display_item(App $a, &$arr)
{ {
// Add subthread to the item menu // Add subthread to the item menu
$subthread = []; $subthread = [];
if (local_user() == $arr['item']['uid'] && $arr['item']['parent'] == $arr['item']['id'] && !$arr['item']['self']) { if (
local_user()
&& local_user() == $arr['item']['uid']
&& $arr['item']['parent'] == $arr['item']['id']
&& !$arr['item']['self'])
{
$subthread = [ $subthread = [
'menu' => 'follow_thread', 'menu' => 'follow_thread',
'title' => L10n::t('Follow Thread'), 'title' => L10n::t('Follow Thread'),