Changeset 3445571 for shapepress-dsgvo
- Timestamp:
- 01/23/2026 12:30:14 PM (2 months ago)
- Location:
- shapepress-dsgvo/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
public/class-sp-dsgvo-public.php (modified) (1 diff)
-
sp-dsgvo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shapepress-dsgvo/trunk/README.txt
r3440083 r3445571 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.8.0 7 Stable tag: 3.1.3 77 Stable tag: 3.1.38 8 8 Requires PHP: 5.6.0 9 9 License: GPLv2 or later … … 142 142 143 143 == Changelog == 144 = 3.1.38 = 145 * fixed register_rest_route error 146 144 147 = 3.1.37 = 145 148 * security fix for content block shortcode -
shapepress-dsgvo/trunk/public/class-sp-dsgvo-public.php
r2665977 r3445571 1072 1072 'callback' => array($this, 'getLwText'), 1073 1073 'permission_callback' => '__return_true', 1074 'args' => array( 1075 'locale', 1076 'slug', 1077 'textId', 1078 'includeTagManager' 1079 ) 1074 'args' => [ 1075 'locale' => [ 1076 'required' => false, 1077 'sanitize_callback' => 'sanitize_text_field', 1078 ], 1079 'slug' => [ 1080 'required' => false, 1081 'sanitize_callback' => 'sanitize_text_field', 1082 ], 1083 'textId' => [ 1084 'required' => false, 1085 'sanitize_callback' => 'absint', 1086 ], 1087 'includeTagManager' => [ 1088 'required' => false, 1089 'sanitize_callback' => static function ($v) { 1090 // akzeptiert true/false/1/0/"true"/"false" 1091 return filter_var($v, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) ?? false; 1092 }, 1093 ], 1094 ], 1080 1095 )); 1081 1096 } -
shapepress-dsgvo/trunk/sp-dsgvo.php
r3440083 r3445571 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 719 * Version: 3.1.38 20 20 * Author: legalweb 21 21 * Author URI: https://www.legalweb.io … … 29 29 } 30 30 31 define('sp_dsgvo_VERSION', '3.1.3 7');31 define('sp_dsgvo_VERSION', '3.1.38'); 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.