diff options
Diffstat (limited to 'staticweb/index.pl')
-rwxr-xr-x | staticweb/index.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/staticweb/index.pl b/staticweb/index.pl index 87c9b5f5..25bd0359 100755 --- a/staticweb/index.pl +++ b/staticweb/index.pl @@ -15,13 +15,13 @@ sub main if( param('gb') ){ $rh{gb} = 1; $rh{encoding} = 'gb2312'; - $rh{lang} = 'zh_CN'; + $rh{lang} = 'zh-CN'; $rh{charset} = 'gb2312'; } else{ print redirect("/man.pl/$1/") if( $ENV{REDIRECT_REQUEST_URI} =~ m|/\?(.*)| ); $rh{encoding} = 'Big5'; - $rh{lang} = 'zh_TW'; + $rh{lang} = 'zh-TW'; $rh{charset} = 'big5'; } |