]> git.openstreetmap.org Git - osqa.git/commitdiff
Jira-485 Bugfix, sort order should not be hardcoded in digest.html
authorjordan <jordan@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Tue, 28 Dec 2010 02:29:26 +0000 (02:29 +0000)
committerjordan <jordan@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Tue, 28 Dec 2010 02:29:26 +0000 (02:29 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@639 0cfe37f9-358a-4d5e-be75-b63607b5c754

forum/skins/default/templates/notifications/digest.html

index 67df5c0a2ade8d9c7b55352a2d838ddf4864586a..5c5737514046a49295a2d8a32262412bd825eb02 100644 (file)
@@ -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 %}