mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-25 09:57:11 +00:00
replace + to space when detecting tags (because tags are detected from technorati urls)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user