Fix typo with _external parameter in confirmable.py. Fixes #126

This commit is contained in:
Matt Wright
2013-06-20 16:01:22 -04:00
parent c3ad5b2fa6
commit 06312ef50f
2 changed files with 8 additions and 1 deletions
+7
View File
@@ -3,6 +3,13 @@ Flask-Security Changelog
Here you can see the full list of changes between each Flask-Security release.
Version 1.6.5
-------------
Released June 20th 2013
- Fixed bug in `flask.ext.security.confirmable.generate_confirmation_link`
Version 1.6.4
-------------
+1 -1
View File
@@ -27,7 +27,7 @@ _datastore = LocalProxy(lambda: _security.datastore)
def generate_confirmation_link(user):
token = generate_confirmation_token(user)
return url_for_security('confirm_email', token=token, _extenal=True), token
return url_for_security('confirm_email', token=token, _external=True), token
def send_confirmation_instructions(user):