Changeset 2557303
- Timestamp:
- 07/01/2021 09:27:36 PM (5 years ago)
- Location:
- wprequal/trunk
- Files:
-
- 6 edited
-
app/abstracts/class.Api.php (modified) (1 diff)
-
app/classes/class.ContactForm.php (modified) (1 diff)
-
app/classes/class.PostEntry.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
views/contact/form/hidden.php (modified) (1 diff)
-
wprequal.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wprequal/trunk/app/abstracts/class.Api.php
r2357626 r2557303 136 136 return array( 137 137 'timeout' => 4, 138 'sslverify' => FALSE,138 'sslverify' => TRUE, 139 139 'headers' => array( 140 140 'Accept' => 'application/json', -
wprequal/trunk/app/classes/class.ContactForm.php
r2356316 r2557303 143 143 144 144 $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' => [] 154 155 ]; 155 156 -
wprequal/trunk/app/classes/class.PostEntry.php
r2356316 r2557303 85 85 } 86 86 87 87 88 return $entry; 88 89 -
wprequal/trunk/readme.txt
r2550896 r2557303 159 159 == Change Log == 160 160 161 = 7.8.6 = 162 * Bug Fix - Hidden field default value not printing 163 161 164 = 7.8.5 = 162 165 * Bug Fix - Checkbox checked settings issue -
wprequal/trunk/views/contact/form/hidden.php
r2356316 r2557303 17 17 18 18 <div class="wpq-hidden"> 19 20 19 <input 21 20 type="hidden" 22 21 name="lead[fields][<?php esc_attr_e( $key ); ?>]" 23 value="<?php esc_attr_e( $ value); ?>"22 value="<?php esc_attr_e( $default_value ); ?>" 24 23 /> 25 24 </div> -
wprequal/trunk/wprequal.php
r2550896 r2557303 4 4 Plugin URI: https://wprequal.com 5 5 Description: Mortgage and Real Estate Lead Capture System 6 Version: 7.8. 56 Version: 7.8.6 7 7 Author: WPrequal 8 8 Author URI: https://wprequal.com … … 44 44 45 45 $constants = array( 46 'WPREQUAL_VERSION' => '7.8. 5',46 'WPREQUAL_VERSION' => '7.8.6', 47 47 'WPREQOAL_PLUGIN' => plugin_basename( __FILE__ ), 48 48 'WPREQUAL_OPTIONS' => 'wprequal_options',
Note: See TracChangeset
for help on using the changeset viewer.