small bug in the admin panel fixed
This commit is contained in:
parent
88a7725d0f
commit
215495915c
1 changed files with 3 additions and 2 deletions
|
@ -581,7 +581,7 @@ def is_spam_submitter_name(name, errors_dict):
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def count_urls(text, errors_dict):
|
def count_urls(text):
|
||||||
hits = re.findall(r"(\swww\.|http://|https://)", text)
|
hits = re.findall(r"(\swww\.|http://|https://)", text)
|
||||||
return len(hits)
|
return len(hits)
|
||||||
|
|
||||||
|
@ -1210,11 +1210,12 @@ def admin_maintenance(age_days=60, keyword="viagra", keyword_submission="viagra"
|
||||||
for poll in Poll.select():
|
for poll in Poll.select():
|
||||||
if (keyword in poll.title.lower()) or (keyword in poll.description.lower()):
|
if (keyword in poll.title.lower()) or (keyword in poll.description.lower()):
|
||||||
poll.destroySelf()
|
poll.destroySelf()
|
||||||
elif method == "Remove submission by keyword" and keyword:
|
elif method == "Remove submission by keyword" and keyword_submission:
|
||||||
keyword = keyword_submission.lower()
|
keyword = keyword_submission.lower()
|
||||||
for submission in ContentSubmission.select():
|
for submission in ContentSubmission.select():
|
||||||
if keyword in submission.content.lower():
|
if keyword in submission.content.lower():
|
||||||
submission.destroySelf()
|
submission.destroySelf()
|
||||||
|
|
||||||
return bobo.redirect("../admin")
|
return bobo.redirect("../admin")
|
||||||
|
|
||||||
@bobo.query('/admin')
|
@bobo.query('/admin')
|
||||||
|
|
Loading…
Reference in a new issue