Merge branch 'maint-rel-1.6' into develop

This commit is contained in:
j2blake 2013-11-14 17:06:09 -05:00
commit c8b3238e71
11 changed files with 2 additions and 1 deletions

View file

@ -134,7 +134,8 @@ public class LocaleSelectionSetup implements ServletContextListener {
throws IllegalArgumentException {
Locale locale = LocaleUtils.toLocale(localeString);
if (!LocaleUtils.isAvailableLocale(locale)) {
if (!"es_GO".equals(localeString) && // No complaint about bogus locale
!LocaleUtils.isAvailableLocale(locale)) {
ssWarning("'" + locale + "' is not a recognized locale.");
}
return locale;