From: Andrew Dolgov Date: Sat, 19 May 2007 13:09:13 +0000 (+0100) Subject: block doublequotes in tags X-Git-Tag: 1.2.11~10 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=5a6c21c71ab7cb489ef487c03cf5bae444b0da11;p=tt-rss.git block doublequotes in tags --- diff --git a/functions.php b/functions.php index 5c098fa1..289ae364 100644 --- a/functions.php +++ b/functions.php @@ -929,6 +929,7 @@ $tag = db_escape_string($tag); $tag = str_replace("+", " ", $tag); + $tag = str_replace("\"", "", $tag); $tag = str_replace("technorati tag: ", "", $tag); if (!tag_is_valid($tag)) continue;