Skip to content

Commit fe2abfc

Browse files
author
Richard Jones
committed
fixed external password source example [SF#986601]
1 parent 117415f commit fe2abfc

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Fixed:
2929
- make user permissions check more sane (fix search page for anonymous)
3030
- fixed RDBMS filter() for no matches from full-text search (sf bug 990778)
3131
- fixed DateHTMLProperty for invalid date entry (sf bug 986538)
32+
- fixed external password source example (sf bug 986601)
3233

3334

3435
2004-06-24 0.7.5

doc/customizing.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.142 $
5+
:Version: $Revision: 1.143 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -3022,9 +3022,9 @@ need to override the standard ``verifyPassword`` method defined in
30223022
return 0
30233023

30243024
class Client(client.Client):
3025-
actions = client.Client.actions + (
3026-
('login', ExternalPasswordLoginAction)
3027-
)
3025+
actions = (
3026+
('login', ExternalPasswordLoginAction),
3027+
) + client.Client.actions
30283028

30293029
What this does is look through the file, line by line, looking for a
30303030
name that matches.

0 commit comments

Comments
 (0)