Changeset 3426047
- Timestamp:
- 12/23/2025 09:42:37 AM (3 months ago)
- Location:
- profile-builder
- Files:
-
- 6 edited
- 1 copied
-
tags/3.15.2 (copied) (copied from profile-builder/trunk)
-
tags/3.15.2/front-end/register.php (modified) (1 diff)
-
tags/3.15.2/index.php (modified) (3 diffs)
-
tags/3.15.2/readme.txt (modified) (2 diffs)
-
trunk/front-end/register.php (modified) (1 diff)
-
trunk/index.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
profile-builder/tags/3.15.2/front-end/register.php
r3292486 r3426047 11 11 $key = ( !empty( $_POST['key'] ) ? sanitize_text_field( $_POST['key'] ) : $key ); 12 12 13 if ( !empty( $_POST['user_pass'] ) )// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash 14 $password = $_POST['user_pass'];// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash 15 elseif ( !is_null( $key ) ) { 13 if ( !is_null( $key ) ) { 16 14 $signup = ( is_multisite() ? $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->signups . " WHERE activation_key = %s", $key ) ) : $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE activation_key = %s", $key ) ) ); 17 15 -
profile-builder/tags/3.15.2/index.php
r3410623 r3426047 4 4 * Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/ 5 5 * Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard. 6 * Version: 3.15. 16 * Version: 3.15.2 7 7 * Author: Cozmoslabs 8 8 * Author URI: https://www.cozmoslabs.com/ … … 11 11 * License: GPL2 12 12 * WC requires at least: 3.0.0 13 * WC tested up to: 10. 314 * Elementor tested up to: 3.3 3.215 * Elementor Pro tested up to: 3.3 3.213 * WC tested up to: 10.4 14 * Elementor tested up to: 3.34.0 15 * Elementor Pro tested up to: 3.34.0 16 16 * 17 17 * == Copyright == … … 439 439 * 440 440 */ 441 define('PROFILE_BUILDER_VERSION', '3.15. 1' );441 define('PROFILE_BUILDER_VERSION', '3.15.2' ); 442 442 define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__)); 443 443 define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__)); -
profile-builder/tags/3.15.2/readme.txt
r3410623 r3426047 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 3.15. 18 Stable tag: 3.15.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 207 207 208 208 == Changelog == 209 = 3.15.2 = 210 * Fix: A security issue. Immediate update is advised. Thanks to the WPScan team 211 209 212 = 3.15.1 = 210 213 * Fix: Notice being triggered from the Login form -
profile-builder/trunk/front-end/register.php
r3292486 r3426047 11 11 $key = ( !empty( $_POST['key'] ) ? sanitize_text_field( $_POST['key'] ) : $key ); 12 12 13 if ( !empty( $_POST['user_pass'] ) )// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash 14 $password = $_POST['user_pass'];// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, WordPress.Security.ValidatedSanitizedInput.MissingUnslash 15 elseif ( !is_null( $key ) ) { 13 if ( !is_null( $key ) ) { 16 14 $signup = ( is_multisite() ? $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->signups . " WHERE activation_key = %s", $key ) ) : $wpdb->get_row( $wpdb->prepare( "SELECT * FROM " . $wpdb->base_prefix . "signups WHERE activation_key = %s", $key ) ) ); 17 15 -
profile-builder/trunk/index.php
r3410623 r3426047 4 4 * Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/ 5 5 * Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard. 6 * Version: 3.15. 16 * Version: 3.15.2 7 7 * Author: Cozmoslabs 8 8 * Author URI: https://www.cozmoslabs.com/ … … 11 11 * License: GPL2 12 12 * WC requires at least: 3.0.0 13 * WC tested up to: 10. 314 * Elementor tested up to: 3.3 3.215 * Elementor Pro tested up to: 3.3 3.213 * WC tested up to: 10.4 14 * Elementor tested up to: 3.34.0 15 * Elementor Pro tested up to: 3.34.0 16 16 * 17 17 * == Copyright == … … 439 439 * 440 440 */ 441 define('PROFILE_BUILDER_VERSION', '3.15. 1' );441 define('PROFILE_BUILDER_VERSION', '3.15.2' ); 442 442 define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__)); 443 443 define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__)); -
profile-builder/trunk/readme.txt
r3410623 r3426047 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 3.15. 18 Stable tag: 3.15.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 207 207 208 208 == Changelog == 209 = 3.15.2 = 210 * Fix: A security issue. Immediate update is advised. Thanks to the WPScan team 211 209 212 = 3.15.1 = 210 213 * Fix: Notice being triggered from the Login form
Note: See TracChangeset
for help on using the changeset viewer.