Use appLocale instead of the null pointer.

This commit is contained in:
tao%netscape.com 1999-08-04 18:41:43 +00:00
parent a65b01ff95
commit 46ad611254

View File

@ -53,5 +53,5 @@ function srGetStrBundleWithLocale(path, locale)
function srGetStrBundle(path)
{
var appLocale = srGetAppLocale();
return srGetStrBundleWithLocale(path, null);
return srGetStrBundleWithLocale(path, appLocale);
}