Show More
@@ -214,13 +214,12 b' class ThreadForm(PostForm):' | |||
|
214 | 214 | |
|
215 | 215 | tags = forms.CharField( |
|
216 | 216 | widget=forms.TextInput(attrs={ATTRIBUTE_PLACEHOLDER: TAGS_PLACEHOLDER}), |
|
217 | max_length=100, label=_('Tags')) | |
|
217 | max_length=100, label=_('Tags'), required=True) | |
|
218 | 218 | |
|
219 | 219 | def clean_tags(self): |
|
220 | 220 | tags = self.cleaned_data['tags'].strip() |
|
221 | 221 | |
|
222 | if tags: | |
|
223 | if not self.regex_tags.match(tags): | |
|
222 | if not tags or not self.regex_tags.match(tags): | |
|
224 | 223 |
|
|
225 | 224 |
|
|
226 | 225 |
General Comments 0
You need to be logged in to leave comments.
Login now