summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2022-08-06 14:00:11 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2022-08-19 09:14:27 +0200
commita3d70f50aacd5037d3f010406832c776fbd1c0d2 (patch)
treeb8229ad409e6c34647ffad5bc86a3077ebbe4a98 /lib
parent932b88a39c3e258c66f2a742f44d8467af2137f6 (diff)
Fix Test and adjust code
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Db/Item.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/Item.php b/lib/Db/Item.php
index 06e1091f4..0ed9e9113 100644
--- a/lib/Db/Item.php
+++ b/lib/Db/Item.php
@@ -184,7 +184,7 @@ class Item extends Entity implements IAPI, \JsonSerializable
if (is_null($value)) {
$search_string .= "";
} else {
- html_entity_decode($value);
+ $search_string .= html_entity_decode($value);
}
}