Changeset 3386509
- Timestamp:
- 10/29/2025 02:48:37 PM (4 months ago)
- Location:
- wpcom-member
- Files:
-
- 68 added
- 3 edited
-
tags/1.7.16 (added)
-
tags/1.7.16/admin (added)
-
tags/1.7.16/admin/css (added)
-
tags/1.7.16/admin/css/material-icons.css (added)
-
tags/1.7.16/admin/css/material-icons.css.map (added)
-
tags/1.7.16/admin/css/panel.css (added)
-
tags/1.7.16/admin/css/panel.css.map (added)
-
tags/1.7.16/admin/fonts (added)
-
tags/1.7.16/admin/fonts/material-icons.woff (added)
-
tags/1.7.16/admin/fonts/material-icons.woff2 (added)
-
tags/1.7.16/admin/includes (added)
-
tags/1.7.16/admin/includes/class-plugin-panel.php (added)
-
tags/1.7.16/admin/includes/class-utils.php (added)
-
tags/1.7.16/admin/js (added)
-
tags/1.7.16/admin/js/panel.js (added)
-
tags/1.7.16/admin/load.php (added)
-
tags/1.7.16/css (added)
-
tags/1.7.16/css/admin.css (added)
-
tags/1.7.16/css/cropper.min.css (added)
-
tags/1.7.16/css/style.css (added)
-
tags/1.7.16/images (added)
-
tags/1.7.16/images/empty-comment.svg (added)
-
tags/1.7.16/images/empty-download.svg (added)
-
tags/1.7.16/images/empty-favorite.svg (added)
-
tags/1.7.16/images/empty-follow.svg (added)
-
tags/1.7.16/images/empty-message.svg (added)
-
tags/1.7.16/images/empty-notification.svg (added)
-
tags/1.7.16/images/empty-post.svg (added)
-
tags/1.7.16/images/empty-qa.svg (added)
-
tags/1.7.16/images/lazy.png (added)
-
tags/1.7.16/images/loading.gif (added)
-
tags/1.7.16/images/placeholder.jpg (added)
-
tags/1.7.16/includes (added)
-
tags/1.7.16/includes/class-member.php (added)
-
tags/1.7.16/includes/class-sesstion.php (added)
-
tags/1.7.16/includes/form-validation.php (added)
-
tags/1.7.16/includes/functions.php (added)
-
tags/1.7.16/includes/link-template.php (added)
-
tags/1.7.16/includes/member-functions.php (added)
-
tags/1.7.16/includes/nav-menu.php (added)
-
tags/1.7.16/includes/required.php (added)
-
tags/1.7.16/includes/social-login.php (added)
-
tags/1.7.16/index.php (added)
-
tags/1.7.16/js (added)
-
tags/1.7.16/js/blocks.js (added)
-
tags/1.7.16/js/cropper.min.js (added)
-
tags/1.7.16/js/icons-2.8.9.js (added)
-
tags/1.7.16/js/index.js (added)
-
tags/1.7.16/js/login.js (added)
-
tags/1.7.16/lang (added)
-
tags/1.7.16/lang/wpcom-member-zh_CN.mo (added)
-
tags/1.7.16/lang/wpcom-member-zh_CN.po (added)
-
tags/1.7.16/lang/wpcom-member-zh_TW.mo (added)
-
tags/1.7.16/lang/wpcom-member-zh_TW.po (added)
-
tags/1.7.16/readme.txt (added)
-
tags/1.7.16/templates (added)
-
tags/1.7.16/templates/account.php (added)
-
tags/1.7.16/templates/approve-notice.php (added)
-
tags/1.7.16/templates/approve-resend.php (added)
-
tags/1.7.16/templates/comment.php (added)
-
tags/1.7.16/templates/login.php (added)
-
tags/1.7.16/templates/lostpassword.php (added)
-
tags/1.7.16/templates/post.php (added)
-
tags/1.7.16/templates/profile.php (added)
-
tags/1.7.16/templates/register.php (added)
-
tags/1.7.16/templates/social-login-connect.php (added)
-
tags/1.7.16/templates/user-card.php (added)
-
tags/1.7.16/templates/user-list.php (added)
-
trunk/includes/class-member.php (modified) (1 diff)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpcom-member/trunk/includes/class-member.php
r3385562 r3386509 1152 1152 1153 1153 public static function load_template( $template, $atts = [] ) { 1154 $template = sanitize_file_name( $template);1154 $template = preg_replace('/[^a-zA-Z0-9_-]/', '', $template); 1155 1155 if (file_exists(get_stylesheet_directory() . '/member/' . $template . '.php')) { 1156 1156 $file = get_stylesheet_directory() . '/member/' . $template . '.php';; -
wpcom-member/trunk/index.php
r3385562 r3386509 4 4 * Description: WordPress用户中心插件 / User profile & membership plugin for WordPress 5 5 * Plugin URI: https://www.wpcom.cn/plugins/wpcom-member-pro.html 6 * Version: 1.7.1 56 * Version: 1.7.16 7 7 * Author: WPCOM 8 8 * Author URI: https://www.wpcom.cn … … 12 12 13 13 defined('ABSPATH') || exit; 14 define( 'WPMX_VERSION', '1.7.1 5' );14 define( 'WPMX_VERSION', '1.7.16' ); 15 15 define( 'WPMX_DIR', plugin_dir_path( __FILE__ ) ); 16 16 define( 'WPMX_URI', plugins_url( '/', __FILE__ ) ); -
wpcom-member/trunk/readme.txt
r3385562 r3386509 5 5 Requires at least: 6.2.0 6 6 Tested up to: 6.8.3 7 Stable tag: 1.7.1 57 Stable tag: 1.7.16 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 63 63 ### 更新记录 64 64 65 **1.7.16** - 2025-10-29 66 67 - 优化与部分插件的兼容问题导致模板文件无法加载的情况 68 65 69 **1.7.15** - 2025-10-28 66 70
Note: See TracChangeset
for help on using the changeset viewer.