Plugin Directory

Changeset 2959852


Ignore:
Timestamp:
08/29/2023 11:56:00 AM (3 years ago)
Author:
christophrado
Message:

1.6.1 release

Location:
cookie-notice-consent
Files:
3 edited
18 copied

Legend:

Unmodified
Added
Removed
  • cookie-notice-consent/tags/1.6.1/cookie-notice-consent.php

    r2914848 r2959852  
    44 * Plugin Name:     Cookie Notice & Consent
    55 * Description:     Display a cookie notice, collect consent for different categories and output scripts if consent is given.
    6  * Version:         1.6.0
     6 * Version:         1.6.1
    77 * Author:          Christoph Rado
    88 * Author URI:      https://christophrado.de/
    9  * Tested up to:    6.2
     9 * Tested up to:    6.3
    1010 */
    1111
     
    1717     * Current plugin version
    1818     */
    19     private $version = '1.6.0';
     19    private $version = '1.6.1';
    2020   
    2121    /**
  • cookie-notice-consent/tags/1.6.1/includes/class-cnc-settings.php

    r2914848 r2959852  
    103103    private function render_settings_field_text( $group, $name, $description = '' ) {
    104104        ?>
    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">
    106106        <?php
    107107        if( !empty( $description ) ) {
  • cookie-notice-consent/tags/1.6.1/readme.txt

    r2914848 r2959852  
    44Tags: cookie, consent, compliance, gdpr, dsgvo
    55Requires at least: 5.0
    6 Tested up to: 6.2
    7 Stable tag: 1.6.0
     6Tested up to: 6.3
     7Stable tag: 1.6.1
    88Requires PHP: 5.6
    99License: GPLv3
     
    7676
    7777== 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
    7882
    7983= 1.6.0 =
  • cookie-notice-consent/trunk/cookie-notice-consent.php

    r2914848 r2959852  
    44 * Plugin Name:     Cookie Notice & Consent
    55 * Description:     Display a cookie notice, collect consent for different categories and output scripts if consent is given.
    6  * Version:         1.6.0
     6 * Version:         1.6.1
    77 * Author:          Christoph Rado
    88 * Author URI:      https://christophrado.de/
    9  * Tested up to:    6.2
     9 * Tested up to:    6.3
    1010 */
    1111
     
    1717     * Current plugin version
    1818     */
    19     private $version = '1.6.0';
     19    private $version = '1.6.1';
    2020   
    2121    /**
  • cookie-notice-consent/trunk/includes/class-cnc-settings.php

    r2914848 r2959852  
    103103    private function render_settings_field_text( $group, $name, $description = '' ) {
    104104        ?>
    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">
    106106        <?php
    107107        if( !empty( $description ) ) {
  • cookie-notice-consent/trunk/readme.txt

    r2914848 r2959852  
    44Tags: cookie, consent, compliance, gdpr, dsgvo
    55Requires at least: 5.0
    6 Tested up to: 6.2
    7 Stable tag: 1.6.0
     6Tested up to: 6.3
     7Stable tag: 1.6.1
    88Requires PHP: 5.6
    99License: GPLv3
     
    7676
    7777== 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
    7882
    7983= 1.6.0 =
Note: See TracChangeset for help on using the changeset viewer.