# HG changeset patch # User neko259 # Date 2013-05-25 17:25:04 # Node ID 24368e915aa5fab4518031124fd9fee8c5cb3bf0 # Parent 9ceb712a4b8d8b5642ee74b55faf4c9cdf072586 Added '-' to invalid tag characters because it causes problems. diff --git a/boards/forms.py b/boards/forms.py --- a/boards/forms.py +++ b/boards/forms.py @@ -38,7 +38,7 @@ class PostForm(forms.Form): class ThreadForm(PostForm): - INVALID_TAG_CHARACTERS = ['+', '/', '&', '=', '?'] + INVALID_TAG_CHARACTERS = ['+', '/', '&', '=', '?', '-'] tags = forms.CharField(max_length=100)