Plugin Directory

Changeset 2557303


Ignore:
Timestamp:
07/01/2021 09:27:36 PM (5 years ago)
Author:
wprequal
Message:

Commit v7.8.6

Location:
wprequal/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wprequal/trunk/app/abstracts/class.Api.php

    r2357626 r2557303  
    136136        return array(
    137137            'timeout'   => 4,
    138             'sslverify' => FALSE,
     138            'sslverify' => TRUE,
    139139            'headers'   =>  array(
    140140                'Accept'            => 'application/json',
  • wprequal/trunk/app/classes/class.ContactForm.php

    r2356316 r2557303  
    143143
    144144                    $defaults = [
    145                         'label'       => '',
    146                         'class'       => '',
    147                         'key'         => '',
    148                         'placeholder' => '',
    149                         'required'    => '',
    150                         'value'       => '',
    151                         'type_label'  => '',
    152                         'email_mask'  => '',
    153                         'labels'      => []
     145                        'label'         => '',
     146                        'class'         => '',
     147                        'key'           => '',
     148                        'placeholder'   => '',
     149                        'required'      => '',
     150                        'value'         => '',
     151                        'default_value' => '',
     152                        'type_label'    => '',
     153                        'email_mask'    => '',
     154                        'labels'        => []
    154155                    ];
    155156
  • wprequal/trunk/app/classes/class.PostEntry.php

    r2356316 r2557303  
    8585        }
    8686
     87
    8788        return $entry;
    8889
  • wprequal/trunk/readme.txt

    r2550896 r2557303  
    159159== Change Log ==
    160160
     161= 7.8.6 =
     162* Bug Fix - Hidden field default value not printing
     163
    161164= 7.8.5 =
    162165* Bug Fix - Checkbox checked settings issue
  • wprequal/trunk/views/contact/form/hidden.php

    r2356316 r2557303  
    1717
    1818<div class="wpq-hidden">
    19 
    2019    <input
    2120        type="hidden"
    2221        name="lead[fields][<?php esc_attr_e( $key ); ?>]"
    23         value="<?php esc_attr_e( $value); ?>"
     22        value="<?php esc_attr_e( $default_value ); ?>"
    2423    />
    2524</div>
  • wprequal/trunk/wprequal.php

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