XPressME Integration Kit

Trac


Ignore:
Timestamp:
Jun 4, 2009, 2:02:54 PM (15 years ago)
Author:
toemon
Message:

WordPressME2.0.11への対応,(ブロック周りは未完)

File:
1 edited

Legend:

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

    r232 r252  
    3838        var $mu_domain_current_site; 
    3939        var $mu_path_current_site; 
    40          
     40        var $wp_db_version; 
     41        var $is_wp20; 
    4142         
    4243        function __constructor()        //for PHP5 
     
    163164                 
    164165                $this->set_module_version(); 
    165                 $this->set_is_wpmu(); 
     166                $this->set_wp_version(); 
    166167                $this->set_mu_current_site(); 
    167168    } 
     
    194195    } 
    195196     
    196     function set_is_wpmu(){ 
     197    function set_wp_version(){ 
    197198        include dirname(dirname(__FILE__)) . '/wp-includes/version.php'; 
    198199         
     
    201202        else 
    202203                $this->is_wpmu  = true; 
     204         
     205        $this->wp_db_version = $wp_db_version; 
     206        if ($wp_db_version == 3441) 
     207                        $this->is_wp20 = true; 
     208                else 
     209                        $this->is_wp20 = false; 
     210                 
    203211    } 
    204212     
Note: See TracChangeset for help on using the changeset viewer.