Plugin Directory

Changeset 3440083 for shapepress-dsgvo


Ignore:
Timestamp:
01/15/2026 07:29:34 AM (2 months ago)
Author:
legalweb
Message:

3.1.37

Location:
shapepress-dsgvo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • shapepress-dsgvo/trunk/README.txt

    r3380093 r3440083  
    55Requires at least: 3.0.1
    66Tested up to: 6.8.0
    7 Stable tag: 3.1.35
     7Stable tag: 3.1.37
    88Requires PHP: 5.6.0
    99License: GPLv2 or later
     
    142142
    143143== Changelog ==
     144= 3.1.37 =
     145* security fix for content block shortcode
     146
    144147= 3.1.36 =
    145148* changed name from DWZI GmbH to Mana-I Navodaya GmbH
     
    162165* removed Google Fonts
    163166
    164 = 3.1.29 =
    165 * changed company names of Facebook
    166 * added imprint url and privacy policy url to wpml-config.xml to support translationing of these urls
    167 * added secure cookie option on https
    168 
    169 = 3.1.28 =
    170 * fixed cookie notice preview images
    171 
    172 = 3.1.27 =
    173 * improved sanitation and escaping
    174 * fixed errors at unsubscribe and subject access request
    175 
    176 = 3.1.26 =
    177 * improved sanitation and escaping
    178 
    179167== Upgrade Notice ==
    180168= 3.1.10 =
  • shapepress-dsgvo/trunk/public/shortcodes/content-block-shortcode.php

    r3090019 r3440083  
    1414    //$OL3_LIBS_LOADED = 0;
    1515
    16     $shortcode = $params['shortcode'];
     16    $shortcode = sanitize_key($params['shortcode']);
    1717    if (empty($shortcode) == false) $content = do_shortcode("[" . $shortcode ."]");
    1818
    1919    $embeddingApi = SPDSGVOEmbeddingsManager::getInstance()->getEmbeddingApiBySlug($slug);
    20     if ($embeddingApi == null) return $content;
     20    if ($embeddingApi == null) return wp_kses_post($content);
    2121    // if its allowed by cookie nothing is to do here. otherwise replace iframes, show image, add optin handler
    2222    if ($embeddingApi->checkIfIntegrationIsAllowed($embeddingApi->slug) == true) return $content;
  • shapepress-dsgvo/trunk/sp-dsgvo.php

    r3380093 r3440083  
    1717 * Plugin URI:        https://legalweb.io
    1818 * Description:       WP DSGVO Tools (GDPR) help you to fulfill the GDPR (DGSVO)  compliance guidance (<a target="_blank" href="https://ico.org.uk/for-organisations/data-protection-reform/overview-of-the-gdpr/">GDPR</a>)
    19  * Version:           3.1.36
     19 * Version:           3.1.37
    2020 * Author:            legalweb
    2121 * Author URI:        https://www.legalweb.io
     
    2929}
    3030
    31 define('sp_dsgvo_VERSION', '3.1.36');
     31define('sp_dsgvo_VERSION', '3.1.37');
    3232define('sp_dsgvo_NAME', 'sp-dsgvo');
    3333define('sp_dsgvo_PLUGIN_NAME', 'shapepress-dsgvo');
Note: See TracChangeset for help on using the changeset viewer.