replace + to space when detecting tags (because tags are detected from technorati urls)
This commit is contained in:
parent
4e9f5c2420
commit
31483fc1ab
|
@ -476,6 +476,7 @@
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue