Plugin Directory

Changeset 2715538


Ignore:
Timestamp:
04/27/2022 04:17:21 PM (4 years ago)
Author:
wprequal
Message:

Commit v7.10.5

Location:
wprequal/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wprequal/trunk/includes/classes/class.ContactForm.php

    r2661818 r2715538  
    225225            if ( $saved = get_post_meta( $contact_form_id, 'details', TRUE ) ) {
    226226
    227                 foreach ( $saved as $key => $value ) {
    228 
    229                     if ( ! empty( $value ) ) {
    230                         $details[$key] = $value;
    231                     }
    232 
     227                if ( is_array( $saved ) ) {
     228                    $details = wp_parse_args( array_filter( $saved ), $details );
    233229                }
    234230
  • wprequal/trunk/readme.txt

    r2697830 r2715538  
    164164== Change Log ==
    165165
     166= 7.10.5 =
     167* Bugfix - Register form button text not printing
     168
    166169= 7.10.4 =
    167170* Tweek - Remove landing page button from admin
  • wprequal/trunk/views/contact/form/register-form.php

    r2643615 r2715538  
    3333
    3434    <button class="wprequal-submit input wpq-button">
    35         <?php esc_html( $details['button_text'] ); ?>
     35        <?php esc_html_e( $details['button_text'] ); ?>
    3636    </button>
    3737
  • wprequal/trunk/wprequal.php

    r2697830 r2715538  
    44Plugin URI:  https://wprequal.com
    55Description: Mortgage and Real Estate Lead Capture System
    6 Version:     7.10.4
     6Version:     7.10.5
    77Author:      WPrequal
    88Author URI:  https://wprequal.com
     
    4444
    4545$constants = array(
    46     'WPREQUAL_VERSION'            => '7.10.4',
     46    'WPREQUAL_VERSION'            => '7.10.5',
    4747    'WPREQOAL_PLUGIN'             => plugin_basename( __FILE__ ),
    4848    'WPREQUAL_OPTIONS'            => 'wprequal_options',
Note: See TracChangeset for help on using the changeset viewer.