Plugin Directory

Changeset 3418471


Ignore:
Timestamp:
12/12/2025 06:11:45 PM (4 months ago)
Author:
cbutlerjr
Message:

3.5.4.4 beta release

Location:
wp-members/tags/3.5.4.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-members/tags/3.5.4.4/includes/class-wp-members-user-profile.php

    r3307877 r3418471  
    386386                $fields[ $meta ] = wpmem_get_sanitized( $meta, '' ); // ( isset( $_POST[ $meta ] ) ) ? sanitize_text_field( $_POST[ $meta ] ) : '';
    387387            } elseif ( $field['type'] == 'multiselect' || $field['type'] == 'multicheckbox' ) {
    388                 $fields[ $meta ] = ( isset( $_POST[ $meta ] ) ) ? implode( $field['delimiter'], wp_unslash( $_POST[ $meta ] ) ) : '';
     388                $fields[ $meta ] = ( isset( $_POST[ $meta ] ) ) ? implode( $field['delimiter'], wpmem_sanitize_array( $_POST[ $meta ] ) ) : '';
    389389            } elseif ( $field['type'] == 'textarea' ) {
    390390                $fields[ $meta ] = wpmem_get_sanitized( $meta, '', 'post', 'textarea' ); // ( isset( $_POST[ $meta ] ) ) ? sanitize_textarea_field( $_POST[ $meta ] ) : '';
  • wp-members/tags/3.5.4.4/readme.txt

    r3355733 r3418471  
    33Tags: membership, registration, login, authentication, restriction
    44Requires at least: 4.0
    5 Tested up to: 6.8
     5Tested up to: 6.9
    66Stable tag: 3.5.4.3
    77License: GPLv3
     
    131131
    132132== Changelog ==
     133
     134= 3.5.4.4 =
     135
     136* This is a security patch. See release announcement for more detail.
    133137
    134138= 3.5.4.3 =
  • wp-members/tags/3.5.4.4/wp-members.php

    r3355682 r3418471  
    44Plugin URI:  https://rocketgeek.com
    55Description: WP access restriction and user registration.  For more information on plugin features, refer to <a href="https://rocketgeek.com/plugins/wp-members/docs/">the online Users Guide</a>. A <a href="https://rocketgeek.com/plugins/wp-members/quick-start-guide/">Quick Start Guide</a> is also available. WP-Members(tm) is a trademark of butlerblog.com.
    6 Version:     3.5.4.3
     6Version:     3.5.4.4
    77Author:      Chad Butler
    88Author URI:  https://butlerblog.com/
     
    5959
    6060// Initialize constants.
    61 define( 'WPMEM_VERSION',    '3.5.4.3' );
     61define( 'WPMEM_VERSION',    '3.5.4.4' );
    6262define( 'WPMEM_DB_VERSION', '2.4.2' );
    6363define( 'WPMEM_PATH', plugin_dir_path( __FILE__ ) ); // @todo Fairly certain this is obsolete.
Note: See TracChangeset for help on using the changeset viewer.