summaryrefslogtreecommitdiff
path: root/modules/user/helpers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-07-02 20:52:55 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-07-02 20:52:55 -0700
commit85ea66d51e762aab511fcc549c5d6ba06aa556d0 (patch)
treea47b37c4070177d5adf91237e73037fcddc48e77 /modules/user/helpers
parentadb820e37c95277b07ade93b2404fb3bc213380a (diff)
parent72281d2b448d77afde709929abaf3ab92883ccce (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/user/helpers')
-rw-r--r--modules/user/helpers/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/helpers/user.php b/modules/user/helpers/user.php
index 9e9d4ca1..a59588f8 100644
--- a/modules/user/helpers/user.php
+++ b/modules/user/helpers/user.php
@@ -82,7 +82,7 @@ class user_Core {
$locales = locale::installed();
if (count($locales) > 1) {
// Put "none" at the first position in the array
- $locales = array_merge(array("" => t("&laquo; none &raquo;")), $locales);
+ $locales = array_merge(array("" => t("« none »")), $locales);
$selected_locale = ($user && $user->locale) ? $user->locale : "";
$form->dropdown("locale")
->label(t("Language Preference"))