Changeset 3374790
- Timestamp:
- 10/08/2025 05:37:35 AM (6 months ago)
- Location:
- zoho-crm-forms/trunk
- Files:
-
- 2 edited
-
Readme.txt (modified) (2 diffs)
-
index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zoho-crm-forms/trunk/Readme.txt
r3374786 r3374790 7 7 Author: Zoho CRM 8 8 Tested up to: 6.7.2 9 Stable tag: 1.8.1. 49 Stable tag: 1.8.1.5 10 10 License: GPLv2 or later 11 Version: 1.8.1. 411 Version: 1.8.1.5 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html 13 13 … … 305 305 1.8.1.4 306 306 Security review changes has been updated 307 1.8.1.5 308 The PHP warning issue has been fixed and updated 307 309 == Upgrade notice == 308 310 -
zoho-crm-forms/trunk/index.php
r3259588 r3374790 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.1. 46 * Version: 1.8.1.5 7 7 * ***************************************************************************************** */ 8 8 if (!defined('ABSPATH')) 9 9 exit; 10 10 11 define( 'ZCF_VERSION', '1.8.1. 4' );11 define( 'ZCF_VERSION', '1.8.1.5' ); 12 12 define( 'ZCF_LBPLUGINFILE', __FILE__ ); 13 13 define( 'ZCF_LBPLUGIN_URL', untrailingslashit( plugins_url( '', ZCF_LBPLUGINFILE ) ) ); … … 211 211 $activatedplugin = "crmformswpbuilder"; 212 212 $config = get_option("zcf_captcha_settings"); 213 if ($config['crmforms_recaptcha'] == 'yes') { 213 $recaptcha_enabled = isset($config['crmforms_recaptcha']) && $config['crmforms_recaptcha'] === 'yes'; 214 if ($recaptcha_enabled) { 214 215 wp_register_script('google-captcha-js', "https://www.google.com/recaptcha/api.js"); 215 216 wp_enqueue_script('google-captcha-js');
Note: See TracChangeset
for help on using the changeset viewer.