Django

Code

Changeset 6880

Show
Ignore:
Timestamp:
12/04/07 00:14:45 (9 months ago)
Author:
adrian
Message:

Edited docs/authentication.txt changes from [6805]

Files:

Legend:

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

    r6810 r6880  
    383383     
    384384    When you're manually logging a user in, you *must* call 
    385     ``authenticate()`` before you call ``login()``; ``authenticate()`` 
     385    ``authenticate()`` before you call ``login()``. ``authenticate()`` 
    386386    sets an attribute on the ``User`` noting which authentication 
    387387    backend successfully authenticated that user (see the `backends