File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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
17182004-06-24 0.7.5
Original file line number Diff line number Diff 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
29702970What this does is look through the file, line by line, looking for a
29712971name that matches.
You can’t perform that action at this time.
0 commit comments