Changeset 2750705
- Timestamp:
- 07/01/2022 10:09:51 AM (4 years ago)
- Location:
- cookiebot/trunk
- Files:
-
- 1 deleted
- 4 edited
-
CookiebotAPI.md (deleted)
-
cookiebot.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/addons/controller/addons/embed_autocorrect/Embed_Autocorrect.php (modified) (1 diff)
-
src/lib/Cookiebot_WP.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cookiebot/trunk/cookiebot.php
r2742886 r2750705 6 6 Description: Cookiebot is a cloud-driven solution that automatically controls cookies and trackers, enabling full GDPR/ePrivacy and CCPA compliance for websites. 7 7 Author: Cybot A/S 8 Version: 4.1. 08 Version: 4.1.1 9 9 Author URI: http://cookiebot.com 10 10 Text Domain: cookiebot -
cookiebot/trunk/readme.txt
r2742886 r2750705 4 4 * Requires at least: 4.4 5 5 * Tested up to: 6.0.0 6 * Stable tag: 4.1. 06 * Stable tag: 4.1.1 7 7 * Requires PHP: 5.6 8 8 * License: GPLv2 or later … … 199 199 200 200 ## Changelog ## 201 ### 4.1.1 - 2022-07-01 ### 202 * Fixed undefined variable src when using instagram embed 203 201 204 ### 4.1.0 - 2022-06-15 ### 202 205 * Added setting to ignore scripts from cookiebot scan -
cookiebot/trunk/src/addons/controller/addons/embed_autocorrect/Embed_Autocorrect.php
r2742886 r2750705 291 291 ); 292 292 foreach ( $matches[0] as $match ) { 293 preg_match( '/src\s*=\s*"(.+?)"/', $match, $src ); 294 295 //$matches[1] will have the text that matched the first captured parenthesized 296 if ( isset( $src[1] ) ) { 297 $src = $src[1]; 298 } else { 299 $src = ''; 300 } 301 293 302 //Replace - and add cookie consent notice. 294 303 $adjusted = str_replace( -
cookiebot/trunk/src/lib/Cookiebot_WP.php
r2742886 r2750705 12 12 13 13 class Cookiebot_WP { 14 const COOKIEBOT_PLUGIN_VERSION = '4.1. 0';14 const COOKIEBOT_PLUGIN_VERSION = '4.1.1'; 15 15 const COOKIEBOT_MIN_PHP_VERSION = '5.6.0'; 16 16
Note: See TracChangeset
for help on using the changeset viewer.