summaryrefslogtreecommitdiffstats
path: root/db/item.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/item.php')
-rw-r--r--db/item.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/item.php b/db/item.php
index 8c555db86..23c68f2cd 100644
--- a/db/item.php
+++ b/db/item.php
@@ -200,9 +200,9 @@ class Item extends Entity implements IAPI, \JsonSerializable {
public function generateSearchIndex() {
$this->setSearchIndex(
strtolower(
- strip_tags($this->getBody()) .
- $this->getAuthor() .
- $this->getTitle() .
+ html_entity_decode(strip_tags($this->getBody())) .
+ html_entity_decode($this->getAuthor()) .
+ html_entity_decode($this->getTitle()) .
$this->getUrl()
)
);