From 31483fc1ab06a34c818025a8bc26970de2998258 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 1 Dec 2005 09:28:13 +0100 Subject: [PATCH] replace + to space when detecting tags (because tags are detected from technorati urls) --- functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 99f71fd5..c58afe9e 100644 --- a/functions.php +++ b/functions.php @@ -475,7 +475,8 @@ foreach ($entry_tags as $tag) { $tag = db_escape_string(strtolower($tag)); - + + $tag = str_replace("+", " ", $tag); $tag = str_replace("technorati tag: ", "", $tag); $result = db_query($link, "SELECT id FROM ttrss_tags -- 2.39.2