Changeset 3467497
- Timestamp:
- 02/23/2026 09:55:34 AM (5 weeks ago)
- Location:
- contact-form-to-db
- Files:
-
- 3 edited
-
tags/1.7.4/contact_form_to_db.php (modified) (2 diffs)
-
tags/1.7.4/readme.txt (modified) (1 diff)
-
trunk/contact_form_to_db.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-to-db/tags/1.7.4/contact_form_to_db.php
r3212660 r3467497 573 573 $custom_fields_cf[ $custom_field_title ] = $value; 574 574 } 575 } 576 } else { 577 if ( isset( $_POST['cntctfrm_contact_dropdown'] ) ) { 578 if ( empty( $cntctfrm_options_for_this_plugin ) ) { 579 cntctfrm_options_for_this_plugin(); 580 } 581 $lang = isset( $_POST['cntctfrm_language'] ) ? sanitize_text_field( wp_unslash( $_POST['cntctfrm_language'] ) ) : 'default'; 582 $custom_fields_cf = array( $cntctfrm_options_for_this_plugin['dropdown_label'][ $lang ] => $_POST['cntctfrm_contact_dropdown'] ); 575 583 } 576 584 } … … 2024 2032 $custom_fields_content .= '<div class="custom-fields-container">'; 2025 2033 foreach ( $custom_fields as $key => $custom_field ) { 2026 $custom_fields_content .= '<div class="cntctfrmtdb-custom-field-text"><strong>' . $key. ':</strong> ';2034 $custom_fields_content .= '<div class="cntctfrmtdb-custom-field-text"><strong>' . trim( $key, ':' ) . ':</strong> '; 2027 2035 $custom_fields_content .= $custom_field . '</div>'; 2028 2036 } -
contact-form-to-db/tags/1.7.4/readme.txt
r3310518 r3467497 1 1 === Contact Form to DB by BestWebSoft - Messages Database Plugin For WordPress === 2 Contributors: bestweb layout2 Contributors: bestwebsoft 3 3 Donate link: https://bestwebsoft.com/donate/ 4 Tags: browse messages, cf add on, contact button, contact form add on, contact form parameters 4 Tags: browse messages, cf add on, contact button, contact form add on, contact form parameters, contact form plugin, contact form to db, save messages, download messages, contact us form, web page feedback, delete messages 5 5 Requires at least: 5.6 6 Tested up to: 6. 86 Tested up to: 6.7 7 7 Stable tag: 1.7.4 8 8 License: GPLv2 or later -
contact-form-to-db/trunk/contact_form_to_db.php
r3212660 r3467497 573 573 $custom_fields_cf[ $custom_field_title ] = $value; 574 574 } 575 } 576 } else { 577 if ( isset( $_POST['cntctfrm_contact_dropdown'] ) ) { 578 if ( empty( $cntctfrm_options_for_this_plugin ) ) { 579 cntctfrm_options_for_this_plugin(); 580 } 581 $lang = isset( $_POST['cntctfrm_language'] ) ? sanitize_text_field( wp_unslash( $_POST['cntctfrm_language'] ) ) : 'default'; 582 $custom_fields_cf = array( $cntctfrm_options_for_this_plugin['dropdown_label'][ $lang ] => $_POST['cntctfrm_contact_dropdown'] ); 575 583 } 576 584 } … … 2024 2032 $custom_fields_content .= '<div class="custom-fields-container">'; 2025 2033 foreach ( $custom_fields as $key => $custom_field ) { 2026 $custom_fields_content .= '<div class="cntctfrmtdb-custom-field-text"><strong>' . $key. ':</strong> ';2034 $custom_fields_content .= '<div class="cntctfrmtdb-custom-field-text"><strong>' . trim( $key, ':' ) . ':</strong> '; 2027 2035 $custom_fields_content .= $custom_field . '</div>'; 2028 2036 }
Note: See TracChangeset
for help on using the changeset viewer.