Changeset 3207555
- Timestamp:
- 12/13/2024 11:35:31 AM (16 months ago)
- Location:
- contact-form-vcard-generator/trunk
- Files:
-
- 3 edited
-
contact-form-vcard-generator.php (modified) (1 diff)
-
includes/wp-gvc-cf-action.class.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-vcard-generator/trunk/contact-form-vcard-generator.php
r3198912 r3207555 5 5 Description: WordPress plugin to generate vCard from Contact Form 7 inquiries. 6 6 Author: Ashish Ajani 7 Version: 2. 37 Version: 2.4 8 8 Author URI: http://freelancer-coder.com/ 9 9 License: GPLv2 or later -
contact-form-vcard-generator/trunk/includes/wp-gvc-cf-action.class.php
r3043459 r3207555 75 75 */ 76 76 public function wp_gvccf_save_cf7($wpcf7) { 77 if (wp_gvccf_check_cf7_version()) { 77 if (wp_gvccf_check_cf7_version()) { 78 78 $wp_gvccf_cf_obj = WPCF7_ContactForm::get_current(); 79 79 $submission = WPCF7_Submission::get_instance(); … … 116 116 $shortcode = get_option('wp_gvccf_cf_shortcode'); 117 117 $form_id = wp_gvccf_get_id_from_shortcode($shortcode); 118 if (isset($result->cf7_form_id) && $result->cf7_form_id == $form_id) { 119 $result = wp_gvccf_get_cf7_settings($table); 120 118 if (isset($result->cf7_form_id)) { 119 $result = wp_gvccf_get_cf7_settings($table); 121 120 if ($result->is_send_vcard_enable == '1') { 122 121 $wp_gvccf_selected_fields = $result->selected_vcard_fields; … … 199 198 $shortcode = get_option('wp_gvccf_cf_shortcode'); 200 199 $form_id = wp_gvccf_get_id_from_shortcode($shortcode); 201 if (isset($result->cf7_form_id) && $result->cf7_form_id == $form_id) {200 if (isset($result->cf7_form_id)) { 202 201 $result = wp_gvccf_get_cf7_settings($table); 203 202 if ($result->is_send_vcard_enable == '1') { -
contact-form-vcard-generator/trunk/readme.txt
r3198912 r3207555 6 6 Tested up to: 6.7.1 7 7 Requires PHP: 8.1 8 Stable tag: 2. 38 Stable tag: 2.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 76 76 == Changelog == 77 78 = 2.4 = 79 * Resolved a bug to make sure the vCard is attached to admin email. 80 77 81 = 2.3 = 78 82 * Made it compatible with the latest PHP and WordPress version.
Note: See TracChangeset
for help on using the changeset viewer.