diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2007-05-19 14:09:13 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2007-05-19 14:09:13 +0100 |
| commit | 5a6c21c71ab7cb489ef487c03cf5bae444b0da11 (patch) | |
| tree | fce05ae960ce51df58e4d9043c90d97fca87dadf /functions.php | |
| parent | feead173b066b1abaaf7834e218553b6ce2bc56f (diff) | |
block doublequotes in tags
Diffstat (limited to 'functions.php')
| -rw-r--r-- | functions.php | 1 |
1 files changed, 1 insertions, 0 deletions
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; |