From e4f20ba51171ea6dfbf36da14c97add096962296 Mon Sep 17 00:00:00 2001 From: Aniket Schneider Date: Thu, 13 Mar 2014 17:02:02 -0400 Subject: [PATCH] Validation email template bugfix --- forum/skins/default/templates/auth/mail_validation.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/forum/skins/default/templates/auth/mail_validation.html b/forum/skins/default/templates/auth/mail_validation.html index 82029d6..7e6a2f3 100644 --- a/forum/skins/default/templates/auth/mail_validation.html +++ b/forum/skins/default/templates/auth/mail_validation.html @@ -13,17 +13,17 @@ {% htmlcontent notifications/base.html %}

{% trans "Please use the following link to help us verify your email address:" %}

-

{% trans "Validate my email address" %}

+

{% trans "Validate my email address" %}

{% trans "If the above link is not clickable, copy and paste this url into your web browser's address bar:" %}

-

{% fullurl auth_validate_email user=recipient.id,code=validation_code %}

+

{% fullurl "auth_validate_email" user=recipient.id code=validation_code %}

{% endhtmlcontent %} {% textcontent notifications/base_text.html %} {% trans "Copy and paste this url into your web browser's address bar to help us verify your email address:" %} -{% fullurl auth_validate_email user=recipient.id,code=validation_code %} +{% fullurl "auth_validate_email" user=recipient.id code=validation_code %} {% endtextcontent %} {% endemail %} -- 2.45.1