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: except KeyError:
pass pass
def clean_content(self): #def clean_content(self):
content = self.cleaned_data.get('content') # content = self.cleaned_data.get('content')
if content: # if content:
regex = Spamword.objects.get_regex() # regex = Spamword.objects.get_regex()
if regex.findall(content.lower()): # if regex.findall(content.lower()):
raise forms.ValidationError('This snippet was identified as SPAM.') # raise forms.ValidationError('This snippet was identified as SPAM.')
return content # return content
def save(self, parent=None, *args, **kwargs): def save(self, parent=None, *args, **kwargs):