Plugin Directory

Changeset 3011214


Ignore:
Timestamp:
12/18/2023 09:03:24 AM (2 years ago)
Author:
pieregister
Message:

3.8.3.1

Location:
pie-register/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pie-register/trunk/classes/api/class-wc-api-manager-passwords.php

    r2589751 r3011214  
    2121        // Reset $rnd_value after 14 uses
    2222        // 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 ) {
    2424            if ( defined( 'WP_SETUP_CONFIG' ) )
    2525                static $seed = '';
  • pie-register/trunk/classes/base.php

    r2943431 r3011214  
    205205            $pie_pages = get_option("pie_pages");
    206206           
    207             if(($piereg_login) === false )//Login
     207            if(($piereg_login) === false && !isset($pie_pages[0]))//Login
    208208            {
    209209                $_p = array();
     
    218218            }
    219219           
    220             if(($piereg_registrtion) === false )//Registration
     220            if(($piereg_registrtion) === false && !isset($pie_pages[1]) )//Registration
    221221            {
    222222                $_p = array();
     
    232232            }
    233233               
    234             if(($piereg_forgot_pass) === false )//Forgot Password
     234            if(($piereg_forgot_pass) === false && !isset($pie_pages[2]) )//Forgot Password
    235235            {
    236236                $_p = array();
     
    245245            }
    246246           
    247             if(($piereg_profile) === false )//Profile Page
     247            if(($piereg_profile) === false && !isset($pie_pages[3]) )//Profile Page
    248248            {
    249249                $_p = array();
     
    305305            $update     = $current;
    306306           
    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"]:"";
    308308            $update["paypal_pdt"]     = (isset($current["paypal_pdt"]) && $current["paypal_pdt"])?$current["paypal_pdt"]:"";
    309309            $update["paypal_sandbox"] = (isset($current["paypal_sandbox"]) && $current["paypal_sandbox"])?$current["paypal_sandbox"]:"";
  • pie-register/trunk/pie-register.php

    r2954201 r3011214  
    55Plugin URI: https://pieregister.com/
    66Description: 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
     7Version: 3.8.3.1
    88Author: Pie Register
    99Author URI: https://pieregister.com/
  • pie-register/trunk/readme.txt

    r2954201 r3011214  
    44Tags: login form, user profile, User Registration, registration form, membership form
    55Requires at least: 4.0
    6 Tested up to: 6.3
     6Tested up to: 6.4
    77Requires PHP: 5.6
    8 Stable tag: 3.8.3
     8Stable tag: 3.8.3.1
    99License: GNU Version 2 or Any Later Version
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    232232
    233233== 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
    234241### 3.8.3
    235242
Note: See TracChangeset for help on using the changeset viewer.