XPressME Integration Kit

Trac

Changeset 633


Ignore:
Timestamp:
Aug 21, 2010, 1:16:15 PM (14 years ago)
Author:
toemon
Message:

blog_charset_checkでjaやja_UTFの場合のチェック修正を追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme.php

    r597 r633  
    7070{ 
    7171        $lang= WPLANG; 
    72         if($lang == 'ja_EUC'){ 
    73                 $blog_charset = get_option('blog_charset'); 
    74                 if ($blog_charset !=='EUC-JP') { 
    75                         update_option('blog_charset', 'EUC-JP' ); 
    76                 } 
    77         } 
     72        $blog_charset = get_option('blog_charset'); 
     73        switch ($lang) { 
     74                case 'ja_EUC': 
     75                        if ($blog_charset !=='EUC-JP') update_option('blog_charset', 'EUC-JP' ); 
     76                        break; 
     77                case 'ja_UTF': 
     78                case 'ja': 
     79                        if ($blog_charset !=='UTF-8') update_option('blog_charset', 'UTF-8' ); 
     80                        break; 
     81                default: 
     82        } 
    7883} 
    7984 
Note: See TracChangeset for help on using the changeset viewer.