Readded spam check.

This commit is contained in:
Martin Mahner 2011-06-08 12:17:23 +02:00
parent aa907a6e71
commit 0c18739d8e

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):