Changeset 3011214
- Timestamp:
- 12/18/2023 09:03:24 AM (2 years ago)
- Location:
- pie-register/trunk
- Files:
-
- 4 edited
-
classes/api/class-wc-api-manager-passwords.php (modified) (1 diff)
-
classes/base.php (modified) (5 diffs)
-
pie-register.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pie-register/trunk/classes/api/class-wc-api-manager-passwords.php
r2589751 r3011214 21 21 // Reset $rnd_value after 14 uses 22 22 // 32(md5) + 40(sha1) + 40(sha1) / 8 = 14 random numbers from $rnd_value 23 if ( strlen($rnd_value) < 8 ) {23 if ( $rnd_value !== null && strlen($rnd_value) < 8 ) { 24 24 if ( defined( 'WP_SETUP_CONFIG' ) ) 25 25 static $seed = ''; -
pie-register/trunk/classes/base.php
r2943431 r3011214 205 205 $pie_pages = get_option("pie_pages"); 206 206 207 if(($piereg_login) === false )//Login207 if(($piereg_login) === false && !isset($pie_pages[0]))//Login 208 208 { 209 209 $_p = array(); … … 218 218 } 219 219 220 if(($piereg_registrtion) === false )//Registration220 if(($piereg_registrtion) === false && !isset($pie_pages[1]) )//Registration 221 221 { 222 222 $_p = array(); … … 232 232 } 233 233 234 if(($piereg_forgot_pass) === false )//Forgot Password234 if(($piereg_forgot_pass) === false && !isset($pie_pages[2]) )//Forgot Password 235 235 { 236 236 $_p = array(); … … 245 245 } 246 246 247 if(($piereg_profile) === false )//Profile Page247 if(($piereg_profile) === false && !isset($pie_pages[3]) )//Profile Page 248 248 { 249 249 $_p = array(); … … 305 305 $update = $current; 306 306 307 $update["paypal_butt_id"] = (isset($current["paypal_butt_id"]) && $current["paypal_butt_id"])?$current["paypal_butt_id"]:"";307 $update["paypal_butt_id"] = (isset($current["paypal_butt_id"]) && !empty($current["paypal_butt_id"]))?$current["paypal_butt_id"]:""; 308 308 $update["paypal_pdt"] = (isset($current["paypal_pdt"]) && $current["paypal_pdt"])?$current["paypal_pdt"]:""; 309 309 $update["paypal_sandbox"] = (isset($current["paypal_sandbox"]) && $current["paypal_sandbox"])?$current["paypal_sandbox"]:""; -
pie-register/trunk/pie-register.php
r2954201 r3011214 5 5 Plugin URI: https://pieregister.com/ 6 6 Description: Create custom user registration forms, drag & drop form builder, send invitation codes, add conditional logic, 2-step authentication, assign user roles, accept payments and more! 7 Version: 3.8.3 7 Version: 3.8.3.1 8 8 Author: Pie Register 9 9 Author URI: https://pieregister.com/ -
pie-register/trunk/readme.txt
r2954201 r3011214 4 4 Tags: login form, user profile, User Registration, registration form, membership form 5 5 Requires at least: 4.0 6 Tested up to: 6. 36 Tested up to: 6.4 7 7 Requires PHP: 5.6 8 Stable tag: 3.8.3 8 Stable tag: 3.8.3.1 9 9 License: GNU Version 2 or Any Later Version 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 232 232 233 233 == CHANGELOG == 234 ### 3.8.3.1 235 236 *Released Date 18th December 2023* 237 238 * Fixed: PHP warnings. 239 * Fixed: Profile search results grid in the profile search addon. 240 234 241 ### 3.8.3 235 242
Note: See TracChangeset
for help on using the changeset viewer.