diff options
author | CiaranG <ciaran@ciarang.com> | 2008-10-07 10:52:32 -0400 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2008-10-07 10:52:32 -0400 |
commit | 33b04107231823b48ee27ca28b73266c706e105f (patch) | |
tree | 9b716a7955bdfcfbe37ccfe23fac1abaf0064ebc /lib/util.php | |
parent | 2cc3136dca5c46051934ca94684c514584184d71 (diff) |
Only log locale sets that fail
darcs-hash:20081007145232-f6e2c-15812a2576e1ec270e26dcd61bbec5d07b2b7f05.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 23abb1426..5c5c7179c 100644 --- a/lib/util.php +++ b/lib/util.php @@ -146,7 +146,9 @@ function common_init_language() { bind_textdomain_codeset("laconica", "UTF-8"); textdomain("laconica"); setlocale(LC_CTYPE, 'C'); - common_log(LOG_INFO,'Language requested:'.$language.' Locale set:'.$locale_set,__FILE__); + if(!$local_set) { + common_log(LOG_INFO,'Language requested:'.$language.' - locale could not be set:',__FILE__); + } } define('PAGE_TYPE_PREFS', 'text/html,application/xhtml+xml,application/xml;q=0.3,text/xml;q=0.2'); |