##// END OF EJS Templates
Added '-' to invalid tag characters because it causes problems.
neko259 -
r51:24368e91 default
parent child Browse files
Show More
@@ -38,7 +38,7 b' class PostForm(forms.Form):'
38 38
39 39
40 40 class ThreadForm(PostForm):
41 INVALID_TAG_CHARACTERS = ['+', '/', '&', '=', '?']
41 INVALID_TAG_CHARACTERS = ['+', '/', '&', '=', '?', '-']
42 42
43 43 tags = forms.CharField(max_length=100)
44 44
General Comments 0
You need to be logged in to leave comments. Login now