Django

Code

Changeset 6008

Show
Ignore:
Timestamp:
08/25/07 13:51:32 (1 year ago)
Author:
adrian
Message:

Fixed #5169 -- Fixed error in docs/settings.txt "404 errors" section. Thanks, rokclimb15@gmail.com

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/settings.txt

    r5618 r6008  
    11021102---------- 
    11031103 
    1104 When ``DEBUG`` is ``False`` and your ``MIDDLEWARE_CLASSES`` setting includes 
    1105 ``CommonMiddleware``, Django will e-mail the users listed in the ``MANAGERS`` 
    1106 setting whenever your code raises a 404 and the request has a referer. 
    1107 (It doesn't bother to e-mail for 404s that don't have a referer.) 
     1104When ``DEBUG`` is ``False``, ``SEND_BROKEN_LINK_EMAILS`` is ``True`` and your 
     1105``MIDDLEWARE_CLASSES`` setting includes ``CommonMiddleware``, Django will 
     1106e-mail the users listed in the ``MANAGERS`` setting whenever your code raises 
     1107a 404 and the request has a referer. (It doesn't bother to e-mail for 404s 
     1108that don't have a referer.) 
    11081109 
    11091110You can tell Django to stop reporting particular 404s by tweaking the