Revert previous edit. Prefer « none » (sweet, nice Unicode characters) instead of HTML entities.

This commit is contained in:
Andy Staudacher
2009-09-05 17:43:47 -07:00
parent 047196b23c
commit beb232a1cc
+1 -1
View File
@@ -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;
}