Changeset 3385562
- Timestamp:
- 10/28/2025 04:22:49 AM (4 months ago)
- Location:
- wpcom-member
- Files:
-
- 68 added
- 3 edited
-
tags/1.7.15 (added)
-
tags/1.7.15/admin (added)
-
tags/1.7.15/admin/css (added)
-
tags/1.7.15/admin/css/material-icons.css (added)
-
tags/1.7.15/admin/css/material-icons.css.map (added)
-
tags/1.7.15/admin/css/panel.css (added)
-
tags/1.7.15/admin/css/panel.css.map (added)
-
tags/1.7.15/admin/fonts (added)
-
tags/1.7.15/admin/fonts/material-icons.woff (added)
-
tags/1.7.15/admin/fonts/material-icons.woff2 (added)
-
tags/1.7.15/admin/includes (added)
-
tags/1.7.15/admin/includes/class-plugin-panel.php (added)
-
tags/1.7.15/admin/includes/class-utils.php (added)
-
tags/1.7.15/admin/js (added)
-
tags/1.7.15/admin/js/panel.js (added)
-
tags/1.7.15/admin/load.php (added)
-
tags/1.7.15/css (added)
-
tags/1.7.15/css/admin.css (added)
-
tags/1.7.15/css/cropper.min.css (added)
-
tags/1.7.15/css/style.css (added)
-
tags/1.7.15/images (added)
-
tags/1.7.15/images/empty-comment.svg (added)
-
tags/1.7.15/images/empty-download.svg (added)
-
tags/1.7.15/images/empty-favorite.svg (added)
-
tags/1.7.15/images/empty-follow.svg (added)
-
tags/1.7.15/images/empty-message.svg (added)
-
tags/1.7.15/images/empty-notification.svg (added)
-
tags/1.7.15/images/empty-post.svg (added)
-
tags/1.7.15/images/empty-qa.svg (added)
-
tags/1.7.15/images/lazy.png (added)
-
tags/1.7.15/images/loading.gif (added)
-
tags/1.7.15/images/placeholder.jpg (added)
-
tags/1.7.15/includes (added)
-
tags/1.7.15/includes/class-member.php (added)
-
tags/1.7.15/includes/class-sesstion.php (added)
-
tags/1.7.15/includes/form-validation.php (added)
-
tags/1.7.15/includes/functions.php (added)
-
tags/1.7.15/includes/link-template.php (added)
-
tags/1.7.15/includes/member-functions.php (added)
-
tags/1.7.15/includes/nav-menu.php (added)
-
tags/1.7.15/includes/required.php (added)
-
tags/1.7.15/includes/social-login.php (added)
-
tags/1.7.15/index.php (added)
-
tags/1.7.15/js (added)
-
tags/1.7.15/js/blocks.js (added)
-
tags/1.7.15/js/cropper.min.js (added)
-
tags/1.7.15/js/icons-2.8.9.js (added)
-
tags/1.7.15/js/index.js (added)
-
tags/1.7.15/js/login.js (added)
-
tags/1.7.15/lang (added)
-
tags/1.7.15/lang/wpcom-member-zh_CN.mo (added)
-
tags/1.7.15/lang/wpcom-member-zh_CN.po (added)
-
tags/1.7.15/lang/wpcom-member-zh_TW.mo (added)
-
tags/1.7.15/lang/wpcom-member-zh_TW.po (added)
-
tags/1.7.15/readme.txt (added)
-
tags/1.7.15/templates (added)
-
tags/1.7.15/templates/account.php (added)
-
tags/1.7.15/templates/approve-notice.php (added)
-
tags/1.7.15/templates/approve-resend.php (added)
-
tags/1.7.15/templates/comment.php (added)
-
tags/1.7.15/templates/login.php (added)
-
tags/1.7.15/templates/lostpassword.php (added)
-
tags/1.7.15/templates/post.php (added)
-
tags/1.7.15/templates/profile.php (added)
-
tags/1.7.15/templates/register.php (added)
-
tags/1.7.15/templates/social-login-connect.php (added)
-
tags/1.7.15/templates/user-card.php (added)
-
tags/1.7.15/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
r3322171 r3385562 1152 1152 1153 1153 public static function load_template( $template, $atts = [] ) { 1154 $template = sanitize_file_name( $template ); 1154 1155 if (file_exists(get_stylesheet_directory() . '/member/' . $template . '.php')) { 1155 1156 $file = get_stylesheet_directory() . '/member/' . $template . '.php';; -
wpcom-member/trunk/index.php
r3382374 r3385562 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 46 * Version: 1.7.15 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 4' );14 define( 'WPMX_VERSION', '1.7.15' ); 15 15 define( 'WPMX_DIR', plugin_dir_path( __FILE__ ) ); 16 16 define( 'WPMX_URI', plugins_url( '/', __FILE__ ) ); -
wpcom-member/trunk/readme.txt
r3382374 r3385562 5 5 Requires at least: 6.2.0 6 6 Tested up to: 6.8.3 7 Stable tag: 1.7.1 47 Stable tag: 1.7.15 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.15** - 2025-10-28 66 67 - 优化代码可能存在的安全问题 68 65 69 **1.7.14** - 2025-10-22 66 70
Note: See TracChangeset
for help on using the changeset viewer.