Skip to content

Commit

Permalink
[bug 895898] Increase rate limit for discussion forum posts
Browse files Browse the repository at this point in the history
  • Loading branch information
atopal authored and rlr committed Jul 19, 2013
1 parent bc58f28 commit 39aacb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kitsune/forums/views.py
Expand Up @@ -172,7 +172,7 @@ def reply(request, forum_slug, thread_id):
post_preview.author_post_count = \
reply_.author.post_set.count()
elif (_skip_post_ratelimit(request) or
not is_ratelimited(request, increment=True, rate='5/d',
not is_ratelimited(request, increment=True, rate='15/d',
ip=False,
keys=user_or_ip('forum-post'))):
reply_.save()
Expand Down

0 comments on commit 39aacb0

Please sign in to comment.