Don't escape the verification URL

In the verification email we would output the URL using HTML encoded
text, so that e.g. & -> &. We don't want that and we know the URL
won't contain user contributed content, so it is safe to turn off HTML
encoding here.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth 2011-05-08 15:46:35 +02:00
parent a1eb1f6051
commit 34900cce8c

View File

@ -19,4 +19,4 @@ Hi {{ username }},
to activate your GNU MediaGoblin account, open the following URL in your web browser
{{ verification_url }}
{{ verification_url|safe }}