Changeset 3418471
- Timestamp:
- 12/12/2025 06:11:45 PM (4 months ago)
- Location:
- wp-members/tags/3.5.4.4
- Files:
-
- 3 edited
-
includes/class-wp-members-user-profile.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-members.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-members/tags/3.5.4.4/includes/class-wp-members-user-profile.php
r3307877 r3418471 386 386 $fields[ $meta ] = wpmem_get_sanitized( $meta, '' ); // ( isset( $_POST[ $meta ] ) ) ? sanitize_text_field( $_POST[ $meta ] ) : ''; 387 387 } 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 ] ) ) : ''; 389 389 } elseif ( $field['type'] == 'textarea' ) { 390 390 $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 3 3 Tags: membership, registration, login, authentication, restriction 4 4 Requires at least: 4.0 5 Tested up to: 6. 85 Tested up to: 6.9 6 6 Stable tag: 3.5.4.3 7 7 License: GPLv3 … … 131 131 132 132 == Changelog == 133 134 = 3.5.4.4 = 135 136 * This is a security patch. See release announcement for more detail. 133 137 134 138 = 3.5.4.3 = -
wp-members/tags/3.5.4.4/wp-members.php
r3355682 r3418471 4 4 Plugin URI: https://rocketgeek.com 5 5 Description: 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. 36 Version: 3.5.4.4 7 7 Author: Chad Butler 8 8 Author URI: https://butlerblog.com/ … … 59 59 60 60 // Initialize constants. 61 define( 'WPMEM_VERSION', '3.5.4. 3' );61 define( 'WPMEM_VERSION', '3.5.4.4' ); 62 62 define( 'WPMEM_DB_VERSION', '2.4.2' ); 63 63 define( 'WPMEM_PATH', plugin_dir_path( __FILE__ ) ); // @todo Fairly certain this is obsolete.
Note: See TracChangeset
for help on using the changeset viewer.