From b61e8c6132d8cbd43e12ce82f83a4146e58e9309 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Wed, 25 Jun 2014 10:52:36 -0500 Subject: [PATCH] allow id in email msg --- VERSION | 2 +- gluon/tools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index b26a2100..6278444e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.9.5-trunk+timestamp.2014.06.24.12.45.10 +Version 2.9.5-trunk+timestamp.2014.06.25.10.51.33 diff --git a/gluon/tools.py b/gluon/tools.py index 84328e1b..e4290248 100644 --- a/gluon/tools.py +++ b/gluon/tools.py @@ -2788,7 +2788,7 @@ class Auth(object): if self.settings.registration_requires_verification: link = self.url( self.settings.function, args=('verify_email', key), scheme=True) - d = dict(request.vars) + d = dict(form.vars) d.update(dict(key=key, link=link,username=form.vars[username])) if not (self.settings.mailer and self.settings.mailer.send( to=form.vars.email,