Plugin Directory

Changeset 3445571 for shapepress-dsgvo


Ignore:
Timestamp:
01/23/2026 12:30:14 PM (2 months ago)
Author:
legalweb
Message:

3.1.38

Location:
shapepress-dsgvo/trunk
Files:
3 edited

Legend:

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

    r3440083 r3445571  
    55Requires at least: 3.0.1
    66Tested up to: 6.8.0
    7 Stable tag: 3.1.37
     7Stable tag: 3.1.38
    88Requires PHP: 5.6.0
    99License: GPLv2 or later
     
    142142
    143143== Changelog ==
     144= 3.1.38 =
     145* fixed register_rest_route error
     146
    144147= 3.1.37 =
    145148* security fix for content block shortcode
  • shapepress-dsgvo/trunk/public/class-sp-dsgvo-public.php

    r2665977 r3445571  
    10721072            'callback' => array($this, 'getLwText'),
    10731073            '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            ],
    10801095        ));
    10811096    }
  • shapepress-dsgvo/trunk/sp-dsgvo.php

    r3440083 r3445571  
    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.37
     19 * Version:           3.1.38
    2020 * Author:            legalweb
    2121 * Author URI:        https://www.legalweb.io
     
    2929}
    3030
    31 define('sp_dsgvo_VERSION', '3.1.37');
     31define('sp_dsgvo_VERSION', '3.1.38');
    3232define('sp_dsgvo_NAME', 'sp-dsgvo');
    3333define('sp_dsgvo_PLUGIN_NAME', 'shapepress-dsgvo');
Note: See TracChangeset for help on using the changeset viewer.