Changeset 3440083 for shapepress-dsgvo
- Timestamp:
- 01/15/2026 07:29:34 AM (2 months ago)
- Location:
- shapepress-dsgvo/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
public/shortcodes/content-block-shortcode.php (modified) (1 diff)
-
sp-dsgvo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shapepress-dsgvo/trunk/README.txt
r3380093 r3440083 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.8.0 7 Stable tag: 3.1.3 57 Stable tag: 3.1.37 8 8 Requires PHP: 5.6.0 9 9 License: GPLv2 or later … … 142 142 143 143 == Changelog == 144 = 3.1.37 = 145 * security fix for content block shortcode 146 144 147 = 3.1.36 = 145 148 * changed name from DWZI GmbH to Mana-I Navodaya GmbH … … 162 165 * removed Google Fonts 163 166 164 = 3.1.29 =165 * changed company names of Facebook166 * added imprint url and privacy policy url to wpml-config.xml to support translationing of these urls167 * added secure cookie option on https168 169 = 3.1.28 =170 * fixed cookie notice preview images171 172 = 3.1.27 =173 * improved sanitation and escaping174 * fixed errors at unsubscribe and subject access request175 176 = 3.1.26 =177 * improved sanitation and escaping178 179 167 == Upgrade Notice == 180 168 = 3.1.10 = -
shapepress-dsgvo/trunk/public/shortcodes/content-block-shortcode.php
r3090019 r3440083 14 14 //$OL3_LIBS_LOADED = 0; 15 15 16 $shortcode = $params['shortcode'];16 $shortcode = sanitize_key($params['shortcode']); 17 17 if (empty($shortcode) == false) $content = do_shortcode("[" . $shortcode ."]"); 18 18 19 19 $embeddingApi = SPDSGVOEmbeddingsManager::getInstance()->getEmbeddingApiBySlug($slug); 20 if ($embeddingApi == null) return $content;20 if ($embeddingApi == null) return wp_kses_post($content); 21 21 // if its allowed by cookie nothing is to do here. otherwise replace iframes, show image, add optin handler 22 22 if ($embeddingApi->checkIfIntegrationIsAllowed($embeddingApi->slug) == true) return $content; -
shapepress-dsgvo/trunk/sp-dsgvo.php
r3380093 r3440083 17 17 * Plugin URI: https://legalweb.io 18 18 * 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.3 619 * Version: 3.1.37 20 20 * Author: legalweb 21 21 * Author URI: https://www.legalweb.io … … 29 29 } 30 30 31 define('sp_dsgvo_VERSION', '3.1.3 6');31 define('sp_dsgvo_VERSION', '3.1.37'); 32 32 define('sp_dsgvo_NAME', 'sp-dsgvo'); 33 33 define('sp_dsgvo_PLUGIN_NAME', 'shapepress-dsgvo');
Note: See TracChangeset
for help on using the changeset viewer.