mirror of
https://github.com/evennia/evennia.git
synced 2026-03-25 09:16:32 +01:00
Fixes bug with register view because of improper scrubbing.
This commit is contained in:
parent
0bd9d9a647
commit
d20bd3de7d
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ class EvenniaForm(forms.Form):
|
|||
cleaned = {k:escape(v) for k,v in cleaned.items()}
|
||||
return cleaned
|
||||
|
||||
class AccountForm(EvenniaForm, UserCreationForm):
|
||||
class AccountForm(UserCreationForm):
|
||||
"""
|
||||
This is a generic Django form tailored to the Account model.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue