Plugin Directory

Changeset 3142240


Ignore:
Timestamp:
08/27/2024 11:51:10 AM (19 months ago)
Author:
zohocrm
Message:

Auto increment field issue fixed

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

Legend:

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

    r3115294 r3142240  
    77Author: Zoho CRM
    88Tested up to: 6.5
    9 Stable tag:1.7.8.9
     9Stable tag:1.7.9.0
    1010License: GPLv2 or later
    11 Version: 1.7.8.9
     11Version: 1.7.9.0
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1313
     
    2852851.7.8.9
    286286Security review issue has been fixed
     2871.7.9.0
     288Auto increment field issue fixed
    287289
    288290== Upgrade notice ==
  • zoho-crm-forms/trunk/assets/css/custom.css

    r3035503 r3142240  
    28252825    background: url('../images/ajax-loaders.gif')no-repeat center;
    28262826}
     2827
     2828.delete_link .delete-icon{
     2829    display: none;
     2830}
  • zoho-crm-forms/trunk/includes/crmwebformfieldsfuntions.php

    r2735360 r3142240  
    330330            }
    331331            $postFieldsArray['data'][] = $post_fields;
    332             $postFieldsArray['data'][]['lar_id'] = $module_fields['larId'];
     332            if($module_fields['larId'] !='' && $module_fields['larId'] !=null){
     333                $postFieldsArray['lar_id'] = $module_fields['larId'];
     334            }
    333335            $response = wp_json_encode($postFieldsArray);
    334336
  • zoho-crm-forms/trunk/index.php

    r3115294 r3142240  
    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.7.8.9
     6 * Version: 1.7.9.0
    77 * ***************************************************************************************** */
    88if (!defined('ABSPATH'))
    99    exit;
    1010
    11         define( 'ZCF_VERSION', '1.7.8.9' );
     11        define( 'ZCF_VERSION', '1.7.9.0' );
    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.