Fix double encoding of special characters in document tags

This commit is contained in:
Kijin Sung 2023-09-12 22:52:26 +09:00
parent fead32337e
commit ec674dc25f
3 changed files with 4 additions and 3 deletions

View file

@ -1436,6 +1436,7 @@ class DocumentModel extends Document
elseif($search_target == 'tag')
{
$query_id = 'document.getDocumentListWithinTag';
$search_keyword = htmlspecialchars_decode($search_keyword);
}
$args->{'s_' . $search_target} = $search_keyword;
}