Changeset 3298513
- Timestamp:
- 05/22/2025 07:42:16 AM (10 months ago)
- Location:
- docid/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
docid.php (modified) (1 diff)
-
frontend/class-docid-frontend.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
docid/trunk/README.txt
r3298309 r3298513 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 56 56 == Changelog == 57 57 58 = 1.0.2 = 59 * Minor bugfixes 60 58 61 = 1.0.1 = 59 62 * Settings page improvements -
docid/trunk/docid.php
r3298309 r3298513 14 14 * Plugin Name: DocID 15 15 * Description: The DocID plugin provides all the functionalities required for a secure and legally compliant authentication of healthcare professionals on your website. 16 * Version: 1.0. 116 * Version: 1.0.2 17 17 * Author: 8awake GmbH <support@docid.de> 18 18 * Author URI: https://docid.de -
docid/trunk/frontend/class-docid-frontend.php
r3298300 r3298513 104 104 } 105 105 106 $authToken = isset($_GET[self::DOCID_TOKEN_PARAMETER_NAME]) && !empty($_GET[self::DOCID_TOKEN_PARAMETER_NAME] ) ? sanitize_text_field(wp_unslash($_GET[self::DOCID_TOKEN_PARAMETER_NAME])) : false;106 $authToken = isset($_GET[self::DOCID_TOKEN_PARAMETER_NAME]) && !empty($_GET[self::DOCID_TOKEN_PARAMETER_NAME] && preg_match('/^[A-Za-z0-9\-_]+\.[A-Za-z0-9\-_]+\.[A-Za-z0-9\-_]+$/', $_GET[self::DOCID_TOKEN_PARAMETER_NAME])) ? wp_unslash($_GET[self::DOCID_TOKEN_PARAMETER_NAME]) : false; 107 107 108 108 /**
Note: See TracChangeset
for help on using the changeset viewer.