From 5a6c21c71ab7cb489ef487c03cf5bae444b0da11 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 19 May 2007 14:09:13 +0100 Subject: [PATCH] block doublequotes in tags --- functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/functions.php b/functions.php index 5c098fa10..289ae3648 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;