diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-22 11:14:22 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-22 11:14:22 +0200 |
commit | 643425669e249983aac1afb15260cefee49f54fc (patch) | |
tree | 2531c8cef801872b355775bd34578c233d391975 /ishtar_common/wizards.py | |
parent | 577d6f03d6e58bdde6109e60a50b854c401c4838 (diff) | |
download | Ishtar-643425669e249983aac1afb15260cefee49f54fc.tar.bz2 Ishtar-643425669e249983aac1afb15260cefee49f54fc.zip |
Fix email on new account creation (refs #3741)
Diffstat (limited to 'ishtar_common/wizards.py')
-rw-r--r-- | ishtar_common/wizards.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index f522188a8..701f6eca3 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -1426,7 +1426,8 @@ class AccountWizard(Wizard): 'login': dct['username'], 'password': dct['password'], 'app_name': app_name, - 'site': site and site.domain or "" + 'site': site and site.domain or "", + "scheme": self.request.scheme } t = loader.get_template('account_activation_email.txt') msg = t.render(context, self.request) |