From: dbs Date: Mon, 23 Mar 2009 19:00:06 +0000 (+0000) Subject: Backport r12646 from trunk: Be careful with global changes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=683fecd3e75caa99b398ea0c6602482436e8d6c9;p=Evergreen.git Backport r12646 from trunk: Be careful with global changes git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_4@12647 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/chrome/content/main/constants.js b/Open-ILS/xul/staff_client/chrome/content/main/constants.js index 2380f338a2..7df18d0340 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/constants.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/constants.js @@ -10,9 +10,9 @@ try { dump("Failed to fetch a locale from preferences: " + E + "\n"); } -/* Fall back to ' + LOCALE + ' if we didn't get a locale from the preferences */ +/* Fall back to en-US if we didn't get a locale from the preferences */ if (!LOCALE) { - LOCALE = '' + LOCALE + ''; + LOCALE = 'en-US'; } const MODE_RDONLY = 0x01;