Changeset 2715538
- Timestamp:
- 04/27/2022 04:17:21 PM (4 years ago)
- Location:
- wprequal/trunk
- Files:
-
- 4 edited
-
includes/classes/class.ContactForm.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
views/contact/form/register-form.php (modified) (1 diff)
-
wprequal.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wprequal/trunk/includes/classes/class.ContactForm.php
r2661818 r2715538 225 225 if ( $saved = get_post_meta( $contact_form_id, 'details', TRUE ) ) { 226 226 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 ); 233 229 } 234 230 -
wprequal/trunk/readme.txt
r2697830 r2715538 164 164 == Change Log == 165 165 166 = 7.10.5 = 167 * Bugfix - Register form button text not printing 168 166 169 = 7.10.4 = 167 170 * Tweek - Remove landing page button from admin -
wprequal/trunk/views/contact/form/register-form.php
r2643615 r2715538 33 33 34 34 <button class="wprequal-submit input wpq-button"> 35 <?php esc_html ( $details['button_text'] ); ?>35 <?php esc_html_e( $details['button_text'] ); ?> 36 36 </button> 37 37 -
wprequal/trunk/wprequal.php
r2697830 r2715538 4 4 Plugin URI: https://wprequal.com 5 5 Description: Mortgage and Real Estate Lead Capture System 6 Version: 7.10. 46 Version: 7.10.5 7 7 Author: WPrequal 8 8 Author URI: https://wprequal.com … … 44 44 45 45 $constants = array( 46 'WPREQUAL_VERSION' => '7.10. 4',46 'WPREQUAL_VERSION' => '7.10.5', 47 47 'WPREQOAL_PLUGIN' => plugin_basename( __FILE__ ), 48 48 'WPREQUAL_OPTIONS' => 'wprequal_options',
Note: See TracChangeset
for help on using the changeset viewer.