mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Removed spamword check.
This commit is contained in:
parent
c281eea9bd
commit
aa907a6e71
1 changed files with 7 additions and 7 deletions
|
@ -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):
|
||||
|
||||
|
|
Loading…
Reference in a new issue