Changeset 2959852
- Timestamp:
- 08/29/2023 11:56:00 AM (3 years ago)
- Location:
- cookie-notice-consent
- Files:
-
- 3 edited
- 18 copied
-
tags/1.6.1 (copied) (copied from cookie-notice-consent/trunk)
-
tags/1.6.1/cookie-notice-consent.php (copied) (copied from cookie-notice-consent/trunk/cookie-notice-consent.php) (2 diffs)
-
tags/1.6.1/css/admin.css (copied) (copied from cookie-notice-consent/trunk/css/admin.css)
-
tags/1.6.1/css/front-theme-labs.min.css (copied) (copied from cookie-notice-consent/trunk/css/front-theme-labs.min.css)
-
tags/1.6.1/css/front-theme-lowkey.min.css (copied) (copied from cookie-notice-consent/trunk/css/front-theme-lowkey.min.css)
-
tags/1.6.1/css/front-theme-sidecar.min.css (copied) (copied from cookie-notice-consent/trunk/css/front-theme-sidecar.min.css)
-
tags/1.6.1/css/front.css (copied) (copied from cookie-notice-consent/trunk/css/front.css)
-
tags/1.6.1/css/front.min.css (copied) (copied from cookie-notice-consent/trunk/css/front.min.css)
-
tags/1.6.1/includes/class-cnc-admin.php (copied) (copied from cookie-notice-consent/trunk/includes/class-cnc-admin.php)
-
tags/1.6.1/includes/class-cnc-embeds.php (copied) (copied from cookie-notice-consent/trunk/includes/class-cnc-embeds.php)
-
tags/1.6.1/includes/class-cnc-front.php (copied) (copied from cookie-notice-consent/trunk/includes/class-cnc-front.php)
-
tags/1.6.1/includes/class-cnc-helper.php (copied) (copied from cookie-notice-consent/trunk/includes/class-cnc-helper.php)
-
tags/1.6.1/includes/class-cnc-logger.php (copied) (copied from cookie-notice-consent/trunk/includes/class-cnc-logger.php)
-
tags/1.6.1/includes/class-cnc-settings.php (copied) (copied from cookie-notice-consent/trunk/includes/class-cnc-settings.php) (1 diff)
-
tags/1.6.1/js/front.js (copied) (copied from cookie-notice-consent/trunk/js/front.js)
-
tags/1.6.1/js/front.min.js (copied) (copied from cookie-notice-consent/trunk/js/front.min.js)
-
tags/1.6.1/readme.txt (copied) (copied from cookie-notice-consent/trunk/readme.txt) (2 diffs)
-
tags/1.6.1/wpml-config.xml (copied) (copied from cookie-notice-consent/trunk/wpml-config.xml)
-
trunk/cookie-notice-consent.php (modified) (2 diffs)
-
trunk/includes/class-cnc-settings.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cookie-notice-consent/tags/1.6.1/cookie-notice-consent.php
r2914848 r2959852 4 4 * Plugin Name: Cookie Notice & Consent 5 5 * Description: Display a cookie notice, collect consent for different categories and output scripts if consent is given. 6 * Version: 1.6. 06 * Version: 1.6.1 7 7 * Author: Christoph Rado 8 8 * Author URI: https://christophrado.de/ 9 * Tested up to: 6. 29 * Tested up to: 6.3 10 10 */ 11 11 … … 17 17 * Current plugin version 18 18 */ 19 private $version = '1.6. 0';19 private $version = '1.6.1'; 20 20 21 21 /** -
cookie-notice-consent/tags/1.6.1/includes/class-cnc-settings.php
r2914848 r2959852 103 103 private function render_settings_field_text( $group, $name, $description = '' ) { 104 104 ?> 105 <input type="text" name="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" id="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" value="<?php echo $this->get_option( $group, $name); ?>" class="regular-text">105 <input type="text" name="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" id="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" value="<?php echo esc_html( $this->get_option( $group, $name ) ); ?>" class="regular-text"> 106 106 <?php 107 107 if( !empty( $description ) ) { -
cookie-notice-consent/tags/1.6.1/readme.txt
r2914848 r2959852 4 4 Tags: cookie, consent, compliance, gdpr, dsgvo 5 5 Requires at least: 5.0 6 Tested up to: 6. 27 Stable tag: 1.6. 06 Tested up to: 6.3 7 Stable tag: 1.6.1 8 8 Requires PHP: 5.6 9 9 License: GPLv3 … … 76 76 77 77 == Changelog == 78 79 = 1.6.1 = 80 * Fixed: XSS vulnerability (non-escaped settings field values; only Administrator affected; disclosed by Patchstack) 81 * Tested up to 6.3 78 82 79 83 = 1.6.0 = -
cookie-notice-consent/trunk/cookie-notice-consent.php
r2914848 r2959852 4 4 * Plugin Name: Cookie Notice & Consent 5 5 * Description: Display a cookie notice, collect consent for different categories and output scripts if consent is given. 6 * Version: 1.6. 06 * Version: 1.6.1 7 7 * Author: Christoph Rado 8 8 * Author URI: https://christophrado.de/ 9 * Tested up to: 6. 29 * Tested up to: 6.3 10 10 */ 11 11 … … 17 17 * Current plugin version 18 18 */ 19 private $version = '1.6. 0';19 private $version = '1.6.1'; 20 20 21 21 /** -
cookie-notice-consent/trunk/includes/class-cnc-settings.php
r2914848 r2959852 103 103 private function render_settings_field_text( $group, $name, $description = '' ) { 104 104 ?> 105 <input type="text" name="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" id="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" value="<?php echo $this->get_option( $group, $name); ?>" class="regular-text">105 <input type="text" name="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" id="cookie_notice_consent_<?php echo $group; ?>[<?php echo $name; ?>]" value="<?php echo esc_html( $this->get_option( $group, $name ) ); ?>" class="regular-text"> 106 106 <?php 107 107 if( !empty( $description ) ) { -
cookie-notice-consent/trunk/readme.txt
r2914848 r2959852 4 4 Tags: cookie, consent, compliance, gdpr, dsgvo 5 5 Requires at least: 5.0 6 Tested up to: 6. 27 Stable tag: 1.6. 06 Tested up to: 6.3 7 Stable tag: 1.6.1 8 8 Requires PHP: 5.6 9 9 License: GPLv3 … … 76 76 77 77 == Changelog == 78 79 = 1.6.1 = 80 * Fixed: XSS vulnerability (non-escaped settings field values; only Administrator affected; disclosed by Patchstack) 81 * Tested up to 6.3 78 82 79 83 = 1.6.0 =
Note: See TracChangeset
for help on using the changeset viewer.