From: jordan Date: Tue, 28 Dec 2010 02:29:26 +0000 (+0000) Subject: Jira-485 Bugfix, sort order should not be hardcoded in digest.html X-Git-Tag: live~495 X-Git-Url: https://git.openstreetmap.org./osqa.git/commitdiff_plain/ff3358f1faf55a345e8b261b09f942fd63e81f21 Jira-485 Bugfix, sort order should not be hardcoded in digest.html git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@639 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/skins/default/templates/notifications/digest.html b/forum/skins/default/templates/notifications/digest.html index 67df5c0..5c57375 100644 --- a/forum/skins/default/templates/notifications/digest.html +++ b/forum/skins/default/templates/notifications/digest.html @@ -37,7 +37,7 @@ {% if new_question_count %} {% declare %} - new_questions_link = html.hyperlink(app_url + reverse('questions') + '?sort=latest', _('new questions'), style=a_style) + new_questions_link = html.hyperlink(app_url + reverse('questions') + '?sort=' + _('latest'), _('new questions'), style=a_style) user_questions = digest.get_for_user(recipient) subscriptions_link = html.hyperlink(app_url + recipient.get_subscribed_url(), _('subscriptions'), style=a_style) {% enddeclare %}