Skip to content

Commit 583ebc5

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent a196581 commit 583ebc5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGES.txt

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

1617

1718
2004-06-24 0.7.5

doc/customizing.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2963,9 +2963,9 @@ need to override the standard ``verifyPassword`` method defined in
29632963
return 0
29642964

29652965
class Client(client.Client):
2966-
actions = client.Client.actions + (
2967-
('login', ExternalPasswordLoginAction)
2968-
)
2966+
actions = (
2967+
('login', ExternalPasswordLoginAction),
2968+
) + client.Client.actions
29692969

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

0 commit comments

Comments
 (0)