From 0a0ce99f5cb21c861dffe6be2d0d74c7370b3582 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Tue, 3 Feb 2009 21:27:56 +0000 Subject: [PATCH] BUGFIX Switched the arrows for desc/asc to the correct way as per SortDirection = desc check in TableListField.ss git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@71309 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 4524f1c15..59bd2b228 100755 --- a/templates/TableListField.ss +++ b/templates/TableListField.ss @@ -20,9 +20,9 @@ <% if SortDirection = desc %> - <% _t('SORTASC', 'Sort in ascending order') %> - <% else %> <% _t('SORTDESC', 'Sort in descending order') %> + <% else %> + <% _t('SORTASC', 'Sort in ascending order') %> <% end_if %>