XPressME Integration Kit

Trac


Ignore:
Timestamp:
Jun 15, 2016, 10:15:37 AM (8 years ago)
Author:
toemon
Message:

マルチユーザーモード時
PHP7でFatal error: Uncaught Error: Call to undefined function split()が発生するバグ修正 Fix #432

File:
1 edited

Legend:

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

    r812 r861  
    327327                                 
    328328                                $where_str = "$match[0]"; 
    329                                 $where_arry = split(' ',$where_str); 
     329                                $where_arry = explode(' ',$where_str); 
    330330                                $post_prefix = ''; 
    331331                                foreach ($where_arry as $p){ 
     
    344344                        if ( preg_match ( "/".$pattern."/i", $query, $match ) ){ 
    345345                                $where_str = "$match[0]"; 
    346                                 $where_arry = split(' ',$where_str); 
     346                                $where_arry = explode(' ',$where_str); 
    347347                                $post_prefix = ''; 
    348348                                foreach ($where_arry as $p){ 
Note: See TracChangeset for help on using the changeset viewer.