Plugin Directory

Changeset 3148979


Ignore:
Timestamp:
09/10/2024 04:46:33 AM (18 months ago)
Author:
whyun
Message:

release 1.5.3.1

Location:
wpcom-member
Files:
68 added
3 edited

Legend:

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

    r3147399 r3148979  
    11161116
    11171117function wpmx_captcha_random_number($start, $end) {
    1118     return round((wp_rand() / mt_getrandmax()) * ($end - $start) + $start);
     1118    return $end <= $start ? $start : wp_rand($start, $end);
    11191119};
    11201120
  • wpcom-member/trunk/index.php

    r3147399 r3148979  
    33 * Plugin Name: WPCOM Member 用户中心
    44 * Description: WordPress用户中心插件 / User profile & membership plugin for WordPress
    5  * Version: 1.5.3
     5 * Version: 1.5.3.1
    66 * Author: WPCOM
    77 * Author URI: https://www.wpcom.cn
     
    1010 */
    1111
    12 define( 'WPMX_VERSION', '1.5.3' );
     12define( 'WPMX_VERSION', '1.5.3.1' );
    1313define( 'WPMX_DIR', plugin_dir_path( __FILE__ ) );
    1414define( 'WPMX_URI', plugins_url( '/', __FILE__ ) );
  • wpcom-member/trunk/readme.txt

    r3147399 r3148979  
    55Requires at least: 6.1.1
    66Tested up to: 6.6.1
    7 Stable tag: 1.5.3
     7Stable tag: 1.5.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6161### 更新记录
    6262
     63**1.5.3.1** - 2024-09-10
     64
     65- 优化内置滑动验证码功能滑块生成出错问题;
     66
    6367**1.5.3** - 2024-09-06
    6468
Note: See TracChangeset for help on using the changeset viewer.