Changeset 3150267
- Timestamp:
- 09/11/2024 05:46:02 PM (18 months ago)
- Location:
- wpcom-member
- Files:
-
- 68 added
- 3 edited
-
tags/1.5.3.2 (added)
-
tags/1.5.3.2/admin (added)
-
tags/1.5.3.2/admin/css (added)
-
tags/1.5.3.2/admin/css/material-icons.css (added)
-
tags/1.5.3.2/admin/css/material-icons.css.map (added)
-
tags/1.5.3.2/admin/css/panel.css (added)
-
tags/1.5.3.2/admin/css/panel.css.map (added)
-
tags/1.5.3.2/admin/fonts (added)
-
tags/1.5.3.2/admin/fonts/material-icons.woff (added)
-
tags/1.5.3.2/admin/fonts/material-icons.woff2 (added)
-
tags/1.5.3.2/admin/includes (added)
-
tags/1.5.3.2/admin/includes/class-plugin-panel.php (added)
-
tags/1.5.3.2/admin/includes/class-utils.php (added)
-
tags/1.5.3.2/admin/js (added)
-
tags/1.5.3.2/admin/js/panel.js (added)
-
tags/1.5.3.2/admin/load.php (added)
-
tags/1.5.3.2/css (added)
-
tags/1.5.3.2/css/admin.css (added)
-
tags/1.5.3.2/css/cropper.min.css (added)
-
tags/1.5.3.2/css/style.css (added)
-
tags/1.5.3.2/images (added)
-
tags/1.5.3.2/images/empty-comment.svg (added)
-
tags/1.5.3.2/images/empty-download.svg (added)
-
tags/1.5.3.2/images/empty-favorite.svg (added)
-
tags/1.5.3.2/images/empty-follow.svg (added)
-
tags/1.5.3.2/images/empty-message.svg (added)
-
tags/1.5.3.2/images/empty-notification.svg (added)
-
tags/1.5.3.2/images/empty-post.svg (added)
-
tags/1.5.3.2/images/empty-qa.svg (added)
-
tags/1.5.3.2/images/lazy.png (added)
-
tags/1.5.3.2/images/loading.gif (added)
-
tags/1.5.3.2/images/placeholder.jpg (added)
-
tags/1.5.3.2/includes (added)
-
tags/1.5.3.2/includes/class-member.php (added)
-
tags/1.5.3.2/includes/class-sesstion.php (added)
-
tags/1.5.3.2/includes/form-validation.php (added)
-
tags/1.5.3.2/includes/functions.php (added)
-
tags/1.5.3.2/includes/link-template.php (added)
-
tags/1.5.3.2/includes/member-functions.php (added)
-
tags/1.5.3.2/includes/nav-menu.php (added)
-
tags/1.5.3.2/includes/required.php (added)
-
tags/1.5.3.2/includes/social-login.php (added)
-
tags/1.5.3.2/index.php (added)
-
tags/1.5.3.2/js (added)
-
tags/1.5.3.2/js/blocks.js (added)
-
tags/1.5.3.2/js/cropper.min.js (added)
-
tags/1.5.3.2/js/icons-2.8.8.js (added)
-
tags/1.5.3.2/js/index.js (added)
-
tags/1.5.3.2/js/login.js (added)
-
tags/1.5.3.2/lang (added)
-
tags/1.5.3.2/lang/wpcom-zh_CN.mo (added)
-
tags/1.5.3.2/lang/wpcom-zh_CN.po (added)
-
tags/1.5.3.2/lang/wpcom-zh_TW.mo (added)
-
tags/1.5.3.2/lang/wpcom-zh_TW.po (added)
-
tags/1.5.3.2/readme.txt (added)
-
tags/1.5.3.2/templates (added)
-
tags/1.5.3.2/templates/account.php (added)
-
tags/1.5.3.2/templates/approve-notice.php (added)
-
tags/1.5.3.2/templates/approve-resend.php (added)
-
tags/1.5.3.2/templates/comment.php (added)
-
tags/1.5.3.2/templates/login.php (added)
-
tags/1.5.3.2/templates/lostpassword.php (added)
-
tags/1.5.3.2/templates/post.php (added)
-
tags/1.5.3.2/templates/profile.php (added)
-
tags/1.5.3.2/templates/register.php (added)
-
tags/1.5.3.2/templates/social-login-connect.php (added)
-
tags/1.5.3.2/templates/user-card.php (added)
-
tags/1.5.3.2/templates/user-list.php (added)
-
trunk/includes/form-validation.php (modified) (1 diff)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpcom-member/trunk/includes/form-validation.php
r3147399 r3150267 123 123 $filter = 'wpcom_login_form_items'; 124 124 $sms_login = 0; 125 if (isset($_POST['user_phone']) && $user_phone = sanitize_text_field(wp_unslash($_POST['user_phone'])) && !isset($_POST['user_login']) && !isset($_POST['user_password']) && is_wpcom_enable_phone()) {125 if (isset($_POST['user_phone']) && ($user_phone = sanitize_text_field(wp_unslash($_POST['user_phone']))) && !isset($_POST['user_login']) && !isset($_POST['user_password']) && is_wpcom_enable_phone()) { 126 126 $filter = 'wpcom_sms_code_items'; 127 127 $sms_login = 1; -
wpcom-member/trunk/index.php
r3148979 r3150267 3 3 * Plugin Name: WPCOM Member 用户中心 4 4 * Description: WordPress用户中心插件 / User profile & membership plugin for WordPress 5 * Version: 1.5.3. 15 * Version: 1.5.3.2 6 6 * Author: WPCOM 7 7 * Author URI: https://www.wpcom.cn … … 10 10 */ 11 11 12 define( 'WPMX_VERSION', '1.5.3. 1' );12 define( 'WPMX_VERSION', '1.5.3.2' ); 13 13 define( 'WPMX_DIR', plugin_dir_path( __FILE__ ) ); 14 14 define( 'WPMX_URI', plugins_url( '/', __FILE__ ) ); -
wpcom-member/trunk/readme.txt
r3148979 r3150267 4 4 Tags: 用户中心, membership 5 5 Requires at least: 6.1.1 6 Tested up to: 6.6. 17 Stable tag: 1.5.3. 16 Tested up to: 6.6.2 7 Stable tag: 1.5.3.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 ### 更新记录 62 62 63 **1.5.3.2** - 2024-09-12 64 65 - 优化手机号快捷登录异常的情况; 66 63 67 **1.5.3.1** - 2024-09-10 64 68
Note: See TracChangeset
for help on using the changeset viewer.