Django

Code

Changeset 4399

Show
Ignore:
Timestamp:
01/22/07 20:30:55 (2 years ago)
Author:
adrian
Message:

Fixed #2296 -- Documented required trailing slash for MEDIA_URL. Thanks, nwp@nz.lemon-computing.com

Files:

Legend:

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

    r4280 r4399  
    558558Example: ``"http://media.lawrence.com"`` 
    559559 
     560Note that this should have a trailing slash if it has a path component. 
     561 
     562Good: ``"http://www.example.com/static/"`` 
     563Bad: ``"http://www.example.com/static"`` 
     564 
    560565MIDDLEWARE_CLASSES 
    561566------------------