Changeset 3209626
- Timestamp:
- 12/18/2024 05:23:47 AM (16 months ago)
- Location:
- zoho-crm-forms/trunk
- Files:
-
- 3 edited
-
Readme.txt (modified) (2 diffs)
-
includes/crmshortcodefunctions.php (modified) (1 diff)
-
index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zoho-crm-forms/trunk/Readme.txt
r3208898 r3209626 7 7 Author: Zoho CRM 8 8 Tested up to: 6.7 9 Stable tag: 1.8.0. 49 Stable tag: 1.8.0.5 10 10 License: GPLv2 or later 11 Version: 1.8.0. 411 Version: 1.8.0.5 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html 13 13 … … 315 315 1.8.0.4 316 316 Bug Boundry issue has been fixed 317 1.8.0.5 318 Bug Boundry issue has been fixed 317 319 318 320 == Upgrade notice == -
zoho-crm-forms/trunk/includes/crmshortcodefunctions.php
r3208898 r3209626 887 887 $meta = $contact_array; 888 888 //$checkid = $wpdb->get_var($wpdb->prepare("select thirdpartyformid from zcf_contactformrelation inner join {$wpdb->prefix}posts on {$wpdb->prefix}posts.ID = zcf_contactformrelation.thirdpartyformid and {$wpdb->prefix}posts.post_status='publish' where crmformsshortcodename =%s and thirdpartypluginname=%s",'contactform')); 889 $dataQuery = "select thirdpartyformid from zcf_contactformrelation inner join {$wpdb->prefix}posts on {$wpdb->prefix}posts.ID = zcf_contactformrelation.thirdpartyformid and {$wpdb->prefix}posts.post_status='publish' where crmformsshortcodename ='".$shortcode."' and thirdpartypluginname='contactform'"; 890 $dataresult = $wpdb->get_row( $dataQuery ); 889 890 $dataQuery = $wpdb->prepare("SELECT thirdpartyformid FROM zcf_contactformrelation INNER JOIN {$wpdb->prefix}posts ON {$wpdb->prefix}posts.ID = zcf_contactformrelation.thirdpartyformid AND {$wpdb->prefix}posts.post_status = 'publish' WHERE crmformsshortcodename = %s AND thirdpartypluginname = 'contactform'",$shortcode); 891 $dataresult = $wpdb->get_row($dataQuery); 891 892 892 893 if (empty($dataresult)) { -
zoho-crm-forms/trunk/index.php
r3208898 r3209626 4 4 * Plugin Name: Zoho CRM Lead Magnet 5 5 * Description: Websites are one of the most important sources of leads for your business. That means your CRM system should be well integrated with your website to contextually capture each and every visitor to turn them into a lead.Introducing the Zoho CRM Lead Capture plugin for Wordpress. This lets you create webforms, embed them in your website, and automatically capture leads directly into your CRM with zero attenuation.Not only is the integration easy to set-up but it's also easy on your wallet. 6 * Version: 1.8.0. 46 * Version: 1.8.0.5 7 7 * ***************************************************************************************** */ 8 8 if (!defined('ABSPATH')) 9 9 exit; 10 10 11 define( 'ZCF_VERSION', '1.8.0. 4' );11 define( 'ZCF_VERSION', '1.8.0.5' ); 12 12 define( 'ZCF_LBPLUGINFILE', __FILE__ ); 13 13 define( 'ZCF_LBPLUGIN_URL', untrailingslashit( plugins_url( '', ZCF_LBPLUGINFILE ) ) );
Note: See TracChangeset
for help on using the changeset viewer.