Merge pull request #987 from ArthurHoaro/hotfix/security-issue

Fix security issue reported by @chb9
This commit is contained in:
ArthurHoaro 2017-10-07 11:33:20 +02:00 committed by GitHub
commit be9ddff2fb
2 changed files with 3 additions and 3 deletions

View File

@ -840,7 +840,7 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history)
}
$data = array(
'search_tags' => implode(' ', $filteringTags),
'search_tags' => implode(' ', escape($filteringTags)),
'tags' => $tagList,
);
$pluginManager->executeHooks('render_tagcloud', $data, array('loggedin' => isLoggedIn()));
@ -870,7 +870,7 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history)
}
$data = [
'search_tags' => implode(' ', $filteringTags),
'search_tags' => implode(' ', escape($filteringTags)),
'tags' => $tags,
];
$pluginManager->executeHooks('render_taglist', $data, ['loggedin' => isLoggedIn()]);

View File

@ -26,7 +26,7 @@
<input type="hidden" name="do" value="tagcloud">
<input type="text" name="searchtags" placeholder="{'Filter by tag'|t}"
{if="!empty($search_tags)"}
value="{$search_tags}"
value="{$search_tags}"
{/if}
autocomplete="off" data-multiple data-autofirst data-minChars="1"
data-list="{loop="$tags"}{$key}, {/loop}"