Plugin Directory

Changeset 3422672


Ignore:
Timestamp:
12/18/2025 09:33:12 AM (3 months ago)
Author:
infility
Message:

v2.14.45 (20251217) Ben: 修复聊天工具漏洞

Location:
infility-global/trunk
Files:
2 edited

Legend:

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

    r3421596 r3422672  
    44Plugin URI: https://www.infility.cn/
    55Description: Infility公共插件
    6 Version: 2.14.44
     6Version: 2.14.45
    77Author: Infility
    88Author URI: https://www.infility.cn/
     
    144144    function __construct()
    145145    {
    146         define( 'INFILITY_GLOBAL_VERSION', '2.14.44' );
     146        define( 'INFILITY_GLOBAL_VERSION', '2.14.45' );
    147147        define( 'INFILITY_GLOBAL_PATH', plugin_dir_path( __FILE__ ) ); // fullpath/wp-content/plugins/infility-global/ // 有斜杠
    148148        define( 'INFILITY_GLOBAL_URL', plugins_url( '/', __FILE__ ) ); // https://the_domain/wp-content/plugins/infility-global/ // 斜杠是自己加的
  • infility-global/trunk/widgets/infility-chat-tool/infility-chat-tool.php

    r3343250 r3422672  
    5353
    5454        if($wpdb->get_var("SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = '$databaseName' AND TABLE_NAME = '$tableName' AND COLUMN_NAME = 'text'") !=1){
    55             $sql = "ALTER TABLE `wp_chat_tool` ADD COLUMN `text` VARCHAR(255) NULL COMMENT '问候语' AFTER `background_color`; ";
     55            $sql = "ALTER TABLE `{$tableName}` ADD COLUMN `text` VARCHAR(255) NULL COMMENT '问候语' AFTER `background_color`; ";
    5656            $wpdb->query($sql);
    5757        }
Note: See TracChangeset for help on using the changeset viewer.