Changeset 2889888
- Timestamp:
- 03/30/2023 07:58:20 AM (2 years ago)
- Location:
- apppresser/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
apppresser/trunk/apppresser.php
r2796421 r2889888 6 6 Text Domain: apppresser 7 7 Domain Path: /languages 8 Version: 4.2. 38 Version: 4.2.4 9 9 Author: AppPresser Team 10 10 Author URI: http://apppresser.com … … 34 34 class AppPresser { 35 35 36 const VERSION = '4.2. 3';36 const VERSION = '4.2.4'; 37 37 const SETTINGS_NAME = 'appp_settings'; 38 38 public static $settings = 'false'; -
apppresser/trunk/inc/AppPresser_WPAPI_Mods.php
r2789173 r2889888 681 681 public function validate_reset_password( $request ) { 682 682 683 global $wpdb;684 683 $return; 685 684 686 $code = $request['code'];687 $password = $request['password'];685 $code = sanitize_text_field($request['code']); 686 $password = sanitize_text_field(addslashes($request['password'])); 688 687 689 688 $user = get_users( array( 'meta_key' => 'app_hash', 'meta_value' => $code ) ); -
apppresser/trunk/readme.txt
r2858166 r2889888 5 5 Requires at least: 4.7.0 6 6 Tested up to: 6.1 7 Stable tag: 4.2. 37 Stable tag: 4.2.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 47 47 48 48 == Changelog == 49 50 = 4.2.4 = 51 * Support quotes and double quotes when resetting password 49 52 50 53 = 4.2.3 =
Note: See TracChangeset
for help on using the changeset viewer.