Plugin Directory

Changeset 2578025


Ignore:
Timestamp:
08/04/2021 12:50:51 PM (5 years ago)
Author:
artemari
Message:

Security bugfix

Location:
cookie-notice-and-consent-banner
Files:
81 added
4 edited

Legend:

Unmodified
Added
Removed
  • cookie-notice-and-consent-banner/.idea/workspace.xml

    r2564819 r2578025  
    2323  <component name="SvnConfiguration" cleanupOnStartRun="true">
    2424    <configuration>C:\Users\zello\AppData\Roaming\Subversion</configuration>
     25    <supportedVersion>125</supportedVersion>
    2526  </component>
    2627  <component name="TaskManager">
     
    3233      <updated>1624441538899</updated>
    3334      <workItem from="1624441543292" duration="55000" />
     35      <workItem from="1628080145426" duration="647000" />
    3436    </task>
    3537    <servers />
     
    3840    <option name="version" value="2" />
    3941  </component>
     42  <component name="WindowStateProjectService">
     43    <state x="-1206" y="260" width="585" height="534" key="find.popup" timestamp="1628080466292">
     44      <screen x="-1920" y="0" width="1920" height="1040" />
     45    </state>
     46    <state x="-1206" y="260" width="585" height="534" key="find.popup/-1920.0.1920.1040/0.0.1920.1040@-1920.0.1920.1040" timestamp="1628080466292" />
     47  </component>
    4048</project>
  • cookie-notice-and-consent-banner/trunk/class-cncb-main.php

    r2564819 r2578025  
    33 * Plugin Name: Cookie Notice and Consent Banner
    44 * Description: Cookie Notice or Consent Banner as Required by Privacy Laws (GDPR & CCPA). Easily Customizable to Fit Your Design.
    5  * Version: 1.7.1
     5 * Version: 1.7.2
    66 * Author: GDPR
    77 * Author URI: https://gdprinfo.eu
     
    1616}
    1717
    18 define( 'CNCB_VERSION', '1.7.1' );
     18define( 'CNCB_VERSION', '1.7.2' );
    1919define( 'CNCB_PREFIX', 'cncb' );
    2020define( 'CNCB_PATH', trailingslashit( plugin_dir_path( __FILE__ ) ) );
  • cookie-notice-and-consent-banner/trunk/includes/customizer/class-cncb-customizer.php

    r2552584 r2578025  
    483483                'transport' => 'postMessage',
    484484                'default'   => esc_attr__( 'This website uses cookies to improve your browsing experience.', 'cookie-notice-and-consent-banner' ),
     485                'sanitize_callback' => 'cncb_text_sanitization',
    485486            )
    486487        );
     
    500501                'transport' => 'postMessage',
    501502                'default'   => esc_attr__( 'ALLOW', 'cookie-notice-and-consent-banner' ),
     503                'sanitize_callback' => 'cncb_text_sanitization',
    502504            )
    503505        );
     
    517519                'transport' => 'postMessage',
    518520                'default'   => esc_attr__( 'OK', 'cookie-notice-and-consent-banner' ),
     521                'sanitize_callback' => 'cncb_text_sanitization',
    519522            )
    520523        );
     
    534537                'transport' => 'postMessage',
    535538                'default'   => esc_attr__( 'DECLINE', 'cookie-notice-and-consent-banner' ),
     539                'sanitize_callback' => 'cncb_text_sanitization',
    536540            )
    537541        );
     
    571575                'transport' => 'postMessage',
    572576                'default'   => esc_attr__( 'GDPR', 'cookie-notice-and-consent-banner' ),
     577                'sanitize_callback' => 'cncb_text_sanitization',
    573578            )
    574579        );
     
    588593                'transport' => 'postMessage',
    589594                'default'   => esc_attr__( 'https://gdprinfo.eu', 'cookie-notice-and-consent-banner' ),
     595                'sanitize_callback' => 'cncb_text_sanitization',
    590596            )
    591597        );
     
    698704            array(
    699705                'transport' => 'postMessage',
     706                'sanitize_callback' => 'cncb_text_sanitization',
    700707            )
    701708        );
     
    718725            array(
    719726                'transport' => 'postMessage',
     727                'sanitize_callback' => 'cncb_text_sanitization',
    720728            )
    721729        );
     
    817825                'transport' => 'postMessage',
    818826                'default'   => esc_attr__( '0' ),
     827                'sanitize_callback' => 'cncb_text_sanitization',
    819828            )
    820829        );
     
    838847                'transport' => 'postMessage',
    839848                'default'   => esc_attr__( '600', 'cookie-notice-and-consent-banner' ),
     849                'sanitize_callback' => 'cncb_text_sanitization',
    840850            )
    841851        );
     
    895905            array(
    896906                'transport' => 'postMessage',
     907                'sanitize_callback' => 'cncb_text_sanitization',
    897908            )
    898909        );
     
    987998            array(
    988999                'transport' => 'postMessage',
     1000                'sanitize_callback' => 'cncb_text_sanitization',
    9891001            )
    9901002        );
     
    10041016            array(
    10051017                'transport' => 'postMessage',
     1018                'sanitize_callback' => 'cncb_text_sanitization',
    10061019            )
    10071020        );
     
    10241037            array(
    10251038                'transport' => 'postMessage',
     1039                'sanitize_callback' => 'cncb_text_sanitization',
    10261040            )
    10271041        );
     
    12961310            array(
    12971311                'transport' => 'postMessage',
     1312                'sanitize_callback' => 'cncb_text_sanitization',
    12981313            )
    12991314        );
     
    13131328            array(
    13141329                'transport' => 'postMessage',
     1330                'sanitize_callback' => 'cncb_text_sanitization',
    13151331            )
    13161332        );
     
    13331349            array(
    13341350                'transport' => 'postMessage',
     1351                'sanitize_callback' => 'cncb_text_sanitization',
    13351352            )
    13361353        );
     
    15851602            array(
    15861603                'type' => 'option',
     1604                'sanitize_callback' => 'cncb_text_sanitization',
    15871605            )
    15881606        );
  • cookie-notice-and-consent-banner/trunk/readme.txt

    r2564819 r2578025  
    3535
    3636== Changelog ==
     37
     38= 1.7.2 - 04. AUG 2021 =
     39* Fix: Security bugfix
     40* Fix: Minor changes
    3741
    3842= 1.7.1 - 15. JULY 2021 =
Note: See TracChangeset for help on using the changeset viewer.