mdsimpson / contact-form-7-to-database-extension

CFDB - WordPress plugin to save form submissions into a database
GNU General Public License v3.0
240 stars 59 forks source link

Changed Page URL and Page Title convert data functions to wpcf7_post_… #54

Closed altert closed 6 years ago

altert commented 6 years ago

Changed Page URL and Page Title convert data functions to wpcf7_post_related_smt

Changed Submitted from Page URL to Submitted Page URL because otherwise $wpdb->get_results parses max(if(field_name='Submitted from Page URL', field_value, null )) AS 'Submitted from Page URL', incorrectly (from is used as mysql statement)

Note: for live installations with submitted form data you would need to execute following sql statement: UPDATE wp_cf7dbplugin_submits SET field_name='Submitted Page URL' WHERE field_name='Submitted from URL'

Knut007 commented 6 years ago

Thank you!