Plugin Directory

Changeset 3416920


Ignore:
Timestamp:
12/11/2025 03:17:29 AM (4 months ago)
Author:
infility
Message:

v2.14.39 (20251211) Ben: 修复导入产品excel分类&搜索不到的问题

Location:
infility-global/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • infility-global/trunk/infility_global.php

    r3409016 r3416920  
    44Plugin URI: https://www.infility.cn/
    55Description: Infility公共插件
    6 Version: 2.14.38
     6Version: 2.14.39
    77Author: Infility
    88Author URI: https://www.infility.cn/
     
    142142    function __construct()
    143143    {
    144         define( 'INFILITY_GLOBAL_VERSION', '2.14.38' );
     144        define( 'INFILITY_GLOBAL_VERSION', '2.14.39' );
    145145        define( 'INFILITY_GLOBAL_PATH', plugin_dir_path( __FILE__ ) ); // fullpath/wp-content/plugins/infility-global/ // 有斜杠
    146146        define( 'INFILITY_GLOBAL_URL', plugins_url( '/', __FILE__ ) ); // https://the_domain/wp-content/plugins/infility-global/ // 斜杠是自己加的
  • infility-global/trunk/widgets/infility-import-data/include/infility-import-excel.php

    r3354991 r3416920  
    5151                    $term = '';
    5252                    foreach($terms as $key1=>$value1){
    53                         if($value == $value1->name){
     53                        $format_value = str_replace('&', '&', $value);
     54                        if($format_value == $value1->name){
    5455                            $term = $value1;
    5556                            break;
Note: See TracChangeset for help on using the changeset viewer.