mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-02 17:00:14 +08:00
Fix typo with _external parameter in confirmable.py. Fixes #126
This commit is contained in:
@@ -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
|
||||
-------------
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user