Plugin Directory

Changeset 3386509


Ignore:
Timestamp:
10/29/2025 02:48:37 PM (4 months ago)
Author:
whyun
Message:

release 1.7.16

Location:
wpcom-member
Files:
68 added
3 edited

Legend:

Unmodified
Added
Removed
  • wpcom-member/trunk/includes/class-member.php

    r3385562 r3386509  
    11521152
    11531153    public static function load_template( $template, $atts = [] ) {
    1154         $template = sanitize_file_name( $template );
     1154        $template = preg_replace('/[^a-zA-Z0-9_-]/', '', $template);
    11551155        if (file_exists(get_stylesheet_directory() . '/member/' . $template . '.php')) {
    11561156            $file = get_stylesheet_directory() . '/member/' . $template . '.php';;
  • wpcom-member/trunk/index.php

    r3385562 r3386509  
    44 * Description: WordPress用户中心插件 / User profile & membership plugin for WordPress
    55 * Plugin URI: https://www.wpcom.cn/plugins/wpcom-member-pro.html
    6  * Version: 1.7.15
     6 * Version: 1.7.16
    77 * Author: WPCOM
    88 * Author URI: https://www.wpcom.cn
     
    1212
    1313defined('ABSPATH') || exit;
    14 define( 'WPMX_VERSION', '1.7.15' );
     14define( 'WPMX_VERSION', '1.7.16' );
    1515define( 'WPMX_DIR', plugin_dir_path( __FILE__ ) );
    1616define( 'WPMX_URI', plugins_url( '/', __FILE__ ) );
  • wpcom-member/trunk/readme.txt

    r3385562 r3386509  
    55Requires at least: 6.2.0
    66Tested up to: 6.8.3
    7 Stable tag: 1.7.15
     7Stable tag: 1.7.16
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6363### 更新记录
    6464
     65**1.7.16** - 2025-10-29
     66
     67- 优化与部分插件的兼容问题导致模板文件无法加载的情况
     68
    6569**1.7.15** - 2025-10-28
    6670
Note: See TracChangeset for help on using the changeset viewer.