summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorBrandon Adams <emidln@gmail.com>2012-11-12 17:17:05 -0500
committerTim Graham <timograham@gmail.com>2012-11-16 18:20:11 -0500
commitcefbf09a4d17ac1f5a90c9a8e68b21bfdd973d31 (patch)
tree7805eee24a327aa64021866a08d712c323191424 /docs/ref
parentb39b0aedbfbddf8fab0c43b92dc237caa8da375f (diff)
[1.5.X] Fixed docs noting comment_will_be_sent returns a 400, not a 403
Backport of d8ee46afff from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/comments/signals.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/comments/signals.txt b/docs/ref/contrib/comments/signals.txt
index 9d7c435927..8274539ed7 100644
--- a/docs/ref/contrib/comments/signals.txt
+++ b/docs/ref/contrib/comments/signals.txt
@@ -20,8 +20,8 @@ Sent just before a comment will be saved, after it's been sanity checked and
submitted. This can be used to modify the comment (in place) with posting
details or other such actions.
-If any receiver returns ``False`` the comment will be discarded and a 403 (not
-allowed) response will be returned.
+If any receiver returns ``False`` the comment will be discarded and a 400
+response will be returned.
This signal is sent at more or less the same time (just before, actually) as the
``Comment`` object's :data:`~django.db.models.signals.pre_save` signal.