XPressME Integration Kit

Trac


Ignore:
Timestamp:
Aug 11, 2009, 4:31:35 PM (15 years ago)
Author:
toemon
Message:

WP2.1.3MEへの対応 fixed #199
但しWP2.1.3ME自体のバグ(MySQL4.1以上でEUC-JPを使用したときの文字化け)があるので注意

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/class/config_from_xoops.class.php

    r357 r360  
    4141        var $mu_path_current_site; 
    4242        var $wp_db_version; 
    43         var $is_wp20; 
     43        var $wp_version; 
     44        var $is_wp_me; 
    4445         
    4546        function __constructor()        //for PHP5 
     
    291292         
    292293        $this->wp_db_version = $wp_db_version; 
    293         if ($wp_db_version == 3441) 
    294                         $this->is_wp20 = true; 
    295                 else 
    296                         $this->is_wp20 = false; 
    297                  
     294                 
     295                $this->wp_version = str_replace("ME", "", $wp_version); 
     296                 
     297                $pattern = 'ME.*'; 
     298        if (preg_match('/' . $pattern . '/' ,$wp_version)){ 
     299                        $this->is_wp_me = true; 
     300                } else { 
     301                        $this->is_wp_me = true; 
     302                } 
    298303    } 
    299304     
Note: See TracChangeset for help on using the changeset viewer.