diff -r 250aeb408ed7 -r 4c5c2b66a34d includes/functions.php --- a/includes/functions.php Sat Oct 06 20:47:09 2007 -0400 +++ b/includes/functions.php Sun Oct 07 08:39:40 2007 -0400 @@ -2744,7 +2744,7 @@ function sanitize_tag($tag) { $tag = strtolower($tag); - $tag = preg_replace('/[^\w _-]+/', '', $tag); + $tag = preg_replace('/[^\w _@\$%\^&-]+/', '', $tag); $tag = trim($tag); return $tag; }