From 1434fae6cf38c01219d7166ff052405a7c8ea452 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Thu, 4 Feb 2010 03:43:32 +0000 Subject: [PATCH] BUGFIX: Correct direction of sort arrows in TableListField (from r96051) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98131 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- templates/TableListField.ss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/TableListField.ss b/templates/TableListField.ss index 99187443b..c39267d27 100755 --- a/templates/TableListField.ss +++ b/templates/TableListField.ss @@ -19,9 +19,9 @@ <% if SortDirection = desc %> - <% _t('SORTDESC', 'Sort in descending order') %> + <% _t('SORTDESC', 'Sort in descending order') %> <% else %> - <% _t('SORTASC', 'Sort in ascending order') %> + <% _t('SORTASC', 'Sort in ascending order') %> <% end_if %>