Plugin Directory

Changeset 3192234


Ignore:
Timestamp:
11/19/2024 12:35:09 PM (17 months ago)
Author:
zohocrm
Message:

Php latest version compatibility checking

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

Legend:

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

    r3185636 r3192234  
    77Author: Zoho CRM
    88Tested up to: 6.7
    9 Stable tag:1.7.9.8
     9Stable tag:1.7.9.9
    1010License: GPLv2 or later
    11 Version: 1.7.9.8
     11Version: 1.7.9.9
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1313
     
    3033031.7.9.8
    304304Security review changes has been updated
     3051.7.9.9
     306Php latest version compatibility checking
    305307
    306308== Upgrade notice ==
  • zoho-crm-forms/trunk/includes/crmcontactformgenerator.php

    r3185636 r3192234  
    207207        $count_error = 0;
    208208        for ($i = 0; $i < count($config_fields); $i++) {
    209             if (array_key_exists($config_fields[$i]['name'], sanitize_text_field($_POST))) {
     209           if (is_array($_POST) && array_key_exists($config_fields[$i]['name'], $_POST)) {
    210210
    211211                if ($config_fields[$i]['zcf_mandatory'] == 1 && sanitize_text_field($_POST[$config_fields[$i]['name']]) == "") {
     
    525525        }
    526526        $htmlcontent .= "<div class='mT20' >
    527         <div class='form-submit'>";
     527        <div class='form-submit'>";
    528528        $htmlcontent .= "<input type='hidden' name='formnumber' value='{$_SESSION['generated_forms']}'>";
    529529        $htmlcontent .= "<input type='hidden' name='submitcontactform' value='submitcontactform{$_SESSION['generated_forms']}'/>";
  • zoho-crm-forms/trunk/index.php

    r3185636 r3192234  
    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.9.8
     6 * Version: 1.7.9.9
    77 * ***************************************************************************************** */
    88if (!defined('ABSPATH'))
    99    exit;
    1010
    11         define( 'ZCF_VERSION', '1.7.9.8' );
     11        define( 'ZCF_VERSION', '1.7.9.9' );
    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.