Plugin Directory

Changeset 3298513


Ignore:
Timestamp:
05/22/2025 07:42:16 AM (10 months ago)
Author:
docid
Message:

Updated plugin to version 1.0.2

Location:
docid/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • docid/trunk/README.txt

    r3298309 r3298513  
    55Requires PHP: 7.4
    66Tested up to: 6.8
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5656== Changelog ==
    5757
     58= 1.0.2 =
     59* Minor bugfixes
     60
    5861= 1.0.1 =
    5962* Settings page improvements
  • docid/trunk/docid.php

    r3298309 r3298513  
    1414 * Plugin Name:       DocID
    1515 * 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.1
     16 * Version:           1.0.2
    1717 * Author:            8awake GmbH <support@docid.de>
    1818 * Author URI:        https://docid.de
  • docid/trunk/frontend/class-docid-frontend.php

    r3298300 r3298513  
    104104        }
    105105
    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;
    107107
    108108        /**
Note: See TracChangeset for help on using the changeset viewer.