Skip to content

Commit

Permalink
Fixed: wflow-core - App Message Hash Variable is not working . (#375)
Browse files Browse the repository at this point in the history
git-svn-id: http://dev.joget.org/svn/jw-community/trunk@181 1bff935d-2fe2-40b7-b00f-c2aca69a7612
  • Loading branch information
owen committed Oct 13, 2011
1 parent eb52f66 commit bb38d3c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -168,7 +168,7 @@ public static Map<String, String> retrieveVariableDataFromMap(Map parameters) {
public static String getAppLocale() {
SetupManager setupManager = (SetupManager) appContext.getBean("setupManager");
String locale = setupManager.getSettingValue("systemLocale");
if (locale == null) {
if (locale == null || (locale != null && locale.isEmpty())) {
locale = "en_US";
}
return locale;
Expand Down

0 comments on commit bb38d3c

Please sign in to comment.