Skip to content

Commit

Permalink
Fixed #15187 -- Ensure that missing page emails aren't sent when runn…
Browse files Browse the repository at this point in the history
…ing under debug. Thanks to Dan Carroll for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15363 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Jan 30, 2011
1 parent 56ebab9 commit 4bb1b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/middleware/common.py
Expand Up @@ -92,7 +92,7 @@ def process_request(self, request):
def process_response(self, request, response): def process_response(self, request, response):
"Send broken link emails and calculate the Etag, if needed." "Send broken link emails and calculate the Etag, if needed."
if response.status_code == 404: if response.status_code == 404:
if settings.SEND_BROKEN_LINK_EMAILS: if settings.SEND_BROKEN_LINK_EMAILS and not settings.DEBUG:
# If the referrer was from an internal link or a non-search-engine site, # If the referrer was from an internal link or a non-search-engine site,
# send a note to the managers. # send a note to the managers.
domain = request.get_host() domain = request.get_host()
Expand Down

0 comments on commit 4bb1b23

Please sign in to comment.