Plugin Directory

Changeset 3426047


Ignore:
Timestamp:
12/23/2025 09:42:37 AM (3 months ago)
Author:
raster02
Message:

tagging version 3.15.2

Location:
profile-builder
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • profile-builder/tags/3.15.2/front-end/register.php

    r3292486 r3426047  
    1111    $key = ( !empty( $_POST['key'] ) ? sanitize_text_field( $_POST['key'] ) : $key );
    1212
    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 ) ) {
    1614        $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 ) ) );
    1715       
  • profile-builder/tags/3.15.2/index.php

    r3410623 r3426047  
    44 * Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
    55 * 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.1
     6 * Version: 3.15.2
    77 * Author: Cozmoslabs
    88 * Author URI: https://www.cozmoslabs.com/
     
    1111 * License: GPL2
    1212 * WC requires at least: 3.0.0
    13  * WC tested up to: 10.3
    14  * Elementor tested up to: 3.33.2
    15  * Elementor Pro tested up to: 3.33.2
     13 * WC tested up to: 10.4
     14 * Elementor tested up to: 3.34.0
     15 * Elementor Pro tested up to: 3.34.0
    1616 *
    1717 * == Copyright ==
     
    439439 *
    440440 */
    441 define('PROFILE_BUILDER_VERSION', '3.15.1' );
     441define('PROFILE_BUILDER_VERSION', '3.15.2' );
    442442define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
    443443define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
  • profile-builder/tags/3.15.2/readme.txt

    r3410623 r3426047  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 3.15.1
     8Stable tag: 3.15.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    207207
    208208== Changelog ==
     209= 3.15.2 =
     210* Fix: A security issue. Immediate update is advised. Thanks to the WPScan team
     211
    209212= 3.15.1 =
    210213* Fix: Notice being triggered from the Login form
  • profile-builder/trunk/front-end/register.php

    r3292486 r3426047  
    1111    $key = ( !empty( $_POST['key'] ) ? sanitize_text_field( $_POST['key'] ) : $key );
    1212
    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 ) ) {
    1614        $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 ) ) );
    1715       
  • profile-builder/trunk/index.php

    r3410623 r3426047  
    44 * Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
    55 * 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.1
     6 * Version: 3.15.2
    77 * Author: Cozmoslabs
    88 * Author URI: https://www.cozmoslabs.com/
     
    1111 * License: GPL2
    1212 * WC requires at least: 3.0.0
    13  * WC tested up to: 10.3
    14  * Elementor tested up to: 3.33.2
    15  * Elementor Pro tested up to: 3.33.2
     13 * WC tested up to: 10.4
     14 * Elementor tested up to: 3.34.0
     15 * Elementor Pro tested up to: 3.34.0
    1616 *
    1717 * == Copyright ==
     
    439439 *
    440440 */
    441 define('PROFILE_BUILDER_VERSION', '3.15.1' );
     441define('PROFILE_BUILDER_VERSION', '3.15.2' );
    442442define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
    443443define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
  • profile-builder/trunk/readme.txt

    r3410623 r3426047  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 3.15.1
     8Stable tag: 3.15.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    207207
    208208== Changelog ==
     209= 3.15.2 =
     210* Fix: A security issue. Immediate update is advised. Thanks to the WPScan team
     211
    209212= 3.15.1 =
    210213* Fix: Notice being triggered from the Login form
Note: See TracChangeset for help on using the changeset viewer.