From f46b875dba9f0d3a8c88fce6cfe8e1f089c32f64 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sat, 8 Dec 2007 00:16:08 +0000 Subject: [PATCH] member profile: sorting by title git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@46480 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/i18n.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/i18n.php b/core/i18n.php index e80fb7005..ad74ae2bb 100755 --- a/core/i18n.php +++ b/core/i18n.php @@ -837,6 +837,9 @@ class i18n extends Controller { } } + // sort by title (not locale) + asort($locales); + return $locales; }