Opened 11 years ago

Closed 11 years ago

#20026 closed Bug (fixed)

Minor typo on Apache authentication doc page

Reported by: shaneallgeier@… Owned by: Aymeric Augustin
Component: Documentation Version: 1.5
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

On the Authenticating against Django’s user database from Apache page, there is mention of a "check_user function" when it is actually a "check_password function".

From:

Finally, edit your WSGI script mysite.wsgi to tie Apache’s authentication to your site’s authentication mechanisms by importing the check_user function

To:

Finally, edit your WSGI script mysite.wsgi to tie Apache’s authentication to your site’s authentication mechanisms by importing the check_password function

Change History (2)

comment:1 by Aymeric Augustin, 11 years ago

Owner: changed from nobody to Aymeric Augustin
Status: newassigned
Triage Stage: UnreviewedAccepted
Type: UncategorizedBug

comment:2 by Aymeric Augustin <aymeric.augustin@…>, 11 years ago

Resolution: fixed
Status: assignedclosed

In 94521f50aa765b9187674f4c6876360a0d6f87d8:

Fixed #20026 -- Typo in Apache auth docs.

Note: See TracTickets for help on using tickets.
Back to Top