? docs/INSTALL.ja ? languages/a ? languages/admin_English.php.1.3_1.5 ? languages/admin_Japanese.php ? languages/lang_Japanese.php Index: .htaccess =================================================================== RCS file: /cvsroot/usebb/UseBB/.htaccess,v retrieving revision 1.27 diff -r1.27 .htaccess 7a8 > RewriteBase /~elf/test/usebb Index: sources/functions.php =================================================================== RCS file: /cvsroot/usebb/UseBB/sources/functions.php,v retrieving revision 1.209 diff -r1.209 functions.php 477d476 < 636c635,636 < --- > global $lang; > 640c640,644 < $body = str_replace("\n", "\r\n", str_replace("\r\n", "\n", $rawbody)); --- > $body = str_replace("\r\n", "\n", $rawbody); > if (strstr(PHP_OS,"WIN")!==FALSE) > // for Windows > $body = str_replace("\n", "\r\n", $rawbody); > 649c653,661 < $headers[] = 'From: '.$from_name.' <'.$from_email.'>'; --- > if ( function_exists("mb_encode_mimeheader")) { > // if exists mbstring, encode some headers. > $from_name = mb_encode_mimeheader( $from_name); > $subject = mb_encode_mimeheader( $subject); > $headers[] = 'MIME-Version: 1.0'; > $headers[] = 'Content-Type: text/plain; charset='.$lang['character_encoding']; > if (strtolower($lang['character_encoding'])=='utf-8') > $headers[] = 'Content-Transfer-Encoding: 8bit'; > } 651a664 > $headers[] = 'Date: '.date("r"); 653c666,667 < --- > $headers[] = 'From: '.$from_name.' <'.$from_email.'>'; > Index: sources/page_head.php =================================================================== RCS file: /cvsroot/usebb/UseBB/sources/page_head.php,v retrieving revision 1.40 diff -r1.40 page_head.php 36c36,39 < --- > if ( function_exists( "mb_language")) { > mb_language( $functions->get_config('language')); > mb_internal_encoding( $lang['character_encoding']); > } Index: sources/post_reply.php =================================================================== RCS file: /cvsroot/usebb/UseBB/sources/post_reply.php,v retrieving revision 1.57 diff -r1.57 post_reply.php 132a133,136 > if ( function_exists( "mb_language")) { > mb_language( $subscribed_user['language']); > mb_internal_encoding( $user_lang['character_encoding']); > } 139a144,149 > > if ( function_exists( "mb_language")) { > mb_language( $functions->get_config('language')); > mb_internal_encoding( $lang['character_encoding']); > } >