Removed spamword check.

This commit is contained in:
Martin Mahner 2011-06-08 11:38:18 +02:00
parent c281eea9bd
commit aa907a6e71

View file

@ -47,13 +47,13 @@ class SnippetForm(forms.ModelForm):
except KeyError:
pass
def clean_content(self):
content = self.cleaned_data.get('content')
if content:
regex = Spamword.objects.get_regex()
if regex.findall(content.lower()):
raise forms.ValidationError('This snippet was identified as SPAM.')
return content
#def clean_content(self):
# content = self.cleaned_data.get('content')
# if content:
# regex = Spamword.objects.get_regex()
# if regex.findall(content.lower()):
# raise forms.ValidationError('This snippet was identified as SPAM.')
# return content
def save(self, parent=None, *args, **kwargs):