forked from GNUsocial/gnu-social
let @rejon do the homework http://ur1.ca/17c
darcs-hash:20080731020433-84dde-641127c2de488087c1525fc773d544ba5b136550.gz
This commit is contained in:
parent
93d25bec33
commit
f2ae665e13
10
lib/util.php
10
lib/util.php
@ -137,8 +137,16 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=
|
||||
global $config, $xw;
|
||||
|
||||
$language = common_language();
|
||||
setlocale(LC_ALL, $language);
|
||||
# So we don't have to make people install the gettext locales
|
||||
putenv('LANGUAGE='.$language);
|
||||
putenv('LANG='.$language);
|
||||
$locale_set = setlocale(LC_ALL, $language . ".utf8",
|
||||
$language . ".UTF8",
|
||||
$language . ".utf-8",
|
||||
$language . ".UTF-8",
|
||||
$language);
|
||||
bindtextdomain("laconica", $config['site']['locale_path']);
|
||||
bind_textdomain_codeset("laconica", "UTF-8");
|
||||
textdomain("laconica");
|
||||
|
||||
$httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user