From 3b82dce4c5feb50e9e83c8316946ea7fe18d4158 Mon Sep 17 00:00:00 2001 From: dbs Date: Mon, 23 Mar 2009 19:00:29 +0000 Subject: [PATCH] Backport r12646 from trunk: Be careful with global changes git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_4_0@12648 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/chrome/content/main/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.11.0