diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-09-05 17:43:47 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-09-05 17:43:47 -0700 |
commit | beb232a1cc6f081b432f32a72bddadcaf3f90df4 (patch) | |
tree | 47e56bae4f3a211c297238cb7e715639606bca39 /modules/user/helpers/user_theme.php | |
parent | 047196b23c5fb12b3c517892d8016679a0ea8799 (diff) |
Revert previous edit. Prefer « none » (sweet, nice Unicode characters) instead of HTML entities.
Diffstat (limited to 'modules/user/helpers/user_theme.php')
-rw-r--r-- | modules/user/helpers/user_theme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/helpers/user_theme.php b/modules/user/helpers/user_theme.php index 184a2bc9..098d87fd 100644 --- a/modules/user/helpers/user_theme.php +++ b/modules/user/helpers/user_theme.php @@ -45,7 +45,7 @@ class user_theme_Core { $block->title = t("Language Preference"); $block->content = new View("user_languages_block.html"); $block->content->installed_locales = - array_merge(array("" => t("« none »")), $locales); + array_merge(array("" => t("« none »")), $locales); $block->content->selected = (string) user::cookie_locale(); return $block; } |