Skip to content

Commit

Permalink
fix: added missing conversion to HTML entities
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Jan 27, 2023
1 parent 62fbba2 commit 47480b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phpmyfaq/faq.php
Expand Up @@ -180,8 +180,8 @@
// Related FAQs
$faqSearchResult->reviewResultSet(
$faqRelation->getAllRelatedByQuestion(
$faq->faqRecord['title'],
$faq->faqRecord['keywords']
Strings::htmlentities($faq->faqRecord['title']),
Strings::htmlentities($faq->faqRecord['keywords'])
)
);

Expand Down

0 comments on commit 47480b3

Please sign in to comment.