Changeset 3113394
- Timestamp:
- 07/06/2024 06:55:47 AM (20 months ago)
- Location:
- collectchat
- Files:
-
- 2 edited
- 7 copied
-
tags/2.4.4 (copied) (copied from collectchat/trunk)
-
tags/2.4.4/collect.php (copied) (copied from collectchat/trunk/collect.php) (3 diffs)
-
tags/2.4.4/deactivation-feedback (copied) (copied from collectchat/trunk/deactivation-feedback)
-
tags/2.4.4/meta.php (copied) (copied from collectchat/trunk/meta.php)
-
tags/2.4.4/options.php (copied) (copied from collectchat/trunk/options.php)
-
tags/2.4.4/readme.txt (copied) (copied from collectchat/trunk/readme.txt) (2 diffs)
-
tags/2.4.4/sidebar.php (copied) (copied from collectchat/trunk/sidebar.php)
-
trunk/collect.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
collectchat/tags/2.4.4/collect.php
r3054681 r3113394 2 2 /** 3 3 * Plugin Name: Collect.chat - Chatbot 4 * Version: 2.4. 34 * Version: 2.4.4 5 5 * Plugin URI: https://collect.chat 6 6 * Description: Chatbots are the simplest, easiest way to collect leads & data from visitors. Create free chatbot without coding using Collect.chat. Never miss an opportunity by engaging every site visitor. … … 183 183 'script' => array(), 184 184 ); 185 185 186 186 if (current_user_can('unfiltered_html')) { 187 return wp_kses($input, $allowed_html); // Script sanitization for users with the unfiltered_html capability187 $input['script'] = wp_kses($input['script'], $allowed_html); // Script sanitization for users with the unfiltered_html capability 188 188 } else { 189 return wp_kses_post($input); // Sanitize all content for other users 190 } 189 $input['script'] = wp_kses_post($input['script']); // Sanitize all content for other users 190 } 191 return $input; 191 192 } 192 193 … … 196 197 197 198 // register settings for sitewide script 198 register_setting('collectchat-settings-group', 'collectchat-plugin-settings', 'collectchat_html_sanitize');199 register_setting('collectchat-settings-group', 'collectchat-plugin-settings', array( 'sanitize_callback' => array( $this, 'collectchat_html_sanitize') )); 199 200 200 201 add_settings_field('script', 'Script', 'trim', 'collectchat'); -
collectchat/tags/2.4.4/readme.txt
r3054681 r3113394 1 === C ollect.chat - Chatbot ⚡️ ===1 === Chatbot for WordPress by Collect.chat ⚡️ === 2 2 Contributors: collectchat 3 3 Tags: chatbot, bot, chat bot, lead generation, chat widget 4 4 Requires at least: 4.5.0 5 Tested up to: 6. 56 Stable tag: 2.4. 35 Tested up to: 6.6 6 Stable tag: 2.4.4 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 436 436 = 2.4.3 = 437 437 * Support for WordPress 6.5 438 439 440 = 2.4.4 = 441 * Support for WordPress 6.6 442 * Security fixes -
collectchat/trunk/collect.php
r3054681 r3113394 2 2 /** 3 3 * Plugin Name: Collect.chat - Chatbot 4 * Version: 2.4. 34 * Version: 2.4.4 5 5 * Plugin URI: https://collect.chat 6 6 * Description: Chatbots are the simplest, easiest way to collect leads & data from visitors. Create free chatbot without coding using Collect.chat. Never miss an opportunity by engaging every site visitor. … … 183 183 'script' => array(), 184 184 ); 185 185 186 186 if (current_user_can('unfiltered_html')) { 187 return wp_kses($input, $allowed_html); // Script sanitization for users with the unfiltered_html capability187 $input['script'] = wp_kses($input['script'], $allowed_html); // Script sanitization for users with the unfiltered_html capability 188 188 } else { 189 return wp_kses_post($input); // Sanitize all content for other users 190 } 189 $input['script'] = wp_kses_post($input['script']); // Sanitize all content for other users 190 } 191 return $input; 191 192 } 192 193 … … 196 197 197 198 // register settings for sitewide script 198 register_setting('collectchat-settings-group', 'collectchat-plugin-settings', 'collectchat_html_sanitize');199 register_setting('collectchat-settings-group', 'collectchat-plugin-settings', array( 'sanitize_callback' => array( $this, 'collectchat_html_sanitize') )); 199 200 200 201 add_settings_field('script', 'Script', 'trim', 'collectchat'); -
collectchat/trunk/readme.txt
r3054681 r3113394 1 === C ollect.chat - Chatbot ⚡️ ===1 === Chatbot for WordPress by Collect.chat ⚡️ === 2 2 Contributors: collectchat 3 3 Tags: chatbot, bot, chat bot, lead generation, chat widget 4 4 Requires at least: 4.5.0 5 Tested up to: 6. 56 Stable tag: 2.4. 35 Tested up to: 6.6 6 Stable tag: 2.4.4 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 436 436 = 2.4.3 = 437 437 * Support for WordPress 6.5 438 439 440 = 2.4.4 = 441 * Support for WordPress 6.6 442 * Security fixes
Note: See TracChangeset
for help on using the changeset viewer.