Plugin Directory

Changeset 2889888


Ignore:
Timestamp:
03/30/2023 07:58:20 AM (2 years ago)
Author:
marioshtika
Message:

Release 4.2.4

Location:
apppresser/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • apppresser/trunk/apppresser.php

    r2796421 r2889888  
    66Text Domain: apppresser
    77Domain Path: /languages
    8 Version: 4.2.3
     8Version: 4.2.4
    99Author: AppPresser Team
    1010Author URI: http://apppresser.com
     
    3434class AppPresser {
    3535
    36     const VERSION           = '4.2.3';
     36    const VERSION           = '4.2.4';
    3737    const SETTINGS_NAME     = 'appp_settings';
    3838    public static $settings = 'false';
  • apppresser/trunk/inc/AppPresser_WPAPI_Mods.php

    r2789173 r2889888  
    681681    public function validate_reset_password( $request ) {
    682682
    683         global $wpdb;
    684683        $return;
    685684
    686         $code       = $request['code'];
    687         $password   = $request['password'];
     685        $code = sanitize_text_field($request['code']);
     686        $password = sanitize_text_field(addslashes($request['password']));
    688687
    689688        $user = get_users( array( 'meta_key' => 'app_hash', 'meta_value' => $code ) );
  • apppresser/trunk/readme.txt

    r2858166 r2889888  
    55Requires at least: 4.7.0
    66Tested up to: 6.1
    7 Stable tag: 4.2.3
     7Stable tag: 4.2.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747
    4848== Changelog ==
     49
     50= 4.2.4 =
     51* Support quotes and double quotes when resetting password
    4952
    5053= 4.2.3 =
Note: See TracChangeset for help on using the changeset viewer.