XPressME Integration Kit

Trac

Changeset 345


Ignore:
Timestamp:
Jul 23, 2009, 5:55:58 PM (15 years ago)
Author:
toemon
Message:

WP2011(EUC)ベースのインストール時blog_charsetがUTF-8に設定されてしまうバグを修正 fixes #188

Location:
trunk/xpressme_integration_kit/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/include/oninstall.php

    r252 r345  
    162162                 
    163163                // Rewrite Option for Xpress 
    164                 //      update_option("blog_charset", wp_blog_charset()); 
     164                        if (WPLANG == 'ja_EUC') { 
     165                                $setup_charset = 'EUC-JP'; 
     166                        } elseif(WPLANG == 'ja_SJIS') { 
     167                                $setup_charset = 'Shift_JIS'; 
     168                        } else { 
     169                                $setup_charset = 'UTF-8'; 
     170                        } 
     171                        update_option("blog_charset", $setup_charset); 
     172 
    165173                        update_option('blogname', $site_name );  
    166174                        update_option('blogdescription', 'WordPress for XOOPS'); 
  • trunk/xpressme_integration_kit/include/onupdate.php

    r277 r345  
    5353//      } 
    5454         
    55 //      update_option("blog_charset", wp_blog_charset()); 
    5655        return true ; 
    5756} 
Note: See TracChangeset for help on using the changeset viewer.