From: dbs Date: Mon, 23 Mar 2009 18:59:23 +0000 (+0000) Subject: Be careful with global changes X-Git-Tag: sprint4-merge-nov22~10429 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=eb13f97ddddac457c1db3aa64141ed11e020cb6f;p=working%2FEvergreen.git Be careful with global changes git-svn-id: svn://svn.open-ils.org/ILS/trunk@12646 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 af6c40a052..3e8db5ee44 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;