Plugin Directory

Changeset 3209626


Ignore:
Timestamp:
12/18/2024 05:23:47 AM (16 months ago)
Author:
zohocrm
Message:

Bug Boundry issue has been fixed

Location:
zoho-crm-forms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • zoho-crm-forms/trunk/Readme.txt

    r3208898 r3209626  
    77Author: Zoho CRM
    88Tested up to: 6.7
    9 Stable tag: 1.8.0.4
     9Stable tag: 1.8.0.5
    1010License: GPLv2 or later
    11 Version: 1.8.0.4
     11Version: 1.8.0.5
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1313
     
    3153151.8.0.4
    316316Bug Boundry issue has been fixed
     3171.8.0.5
     318Bug Boundry issue has been fixed
    317319
    318320== Upgrade notice ==
  • zoho-crm-forms/trunk/includes/crmshortcodefunctions.php

    r3208898 r3209626  
    887887        $meta = $contact_array;
    888888        //$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);
    891892
    892893        if (empty($dataresult)) {
  • zoho-crm-forms/trunk/index.php

    r3208898 r3209626  
    44 * Plugin Name: Zoho CRM Lead Magnet
    55 * 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.4
     6 * Version: 1.8.0.5
    77 * ***************************************************************************************** */
    88if (!defined('ABSPATH'))
    99    exit;
    1010
    11         define( 'ZCF_VERSION', '1.8.0.4' );
     11        define( 'ZCF_VERSION', '1.8.0.5' );
    1212        define( 'ZCF_LBPLUGINFILE', __FILE__ );
    1313        define( 'ZCF_LBPLUGIN_URL', untrailingslashit( plugins_url( '', ZCF_LBPLUGINFILE ) ) );
Note: See TracChangeset for help on using the changeset viewer.