Plugin Directory

Changeset 1868954


Ignore:
Timestamp:
05/04/2018 10:37:11 PM (8 years ago)
Author:
orcasteam
Message:

Fixed language related soft lock

Location:
gdpr-notice-original/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gdpr-notice-original/trunk/gdpr-notice-original.php

    r1868016 r1868954  
    44Plugin URI:   https://www.orcas.de/wordpress-plugin/dsgvo-notiz/
    55Description:  New privacy standard for may 2018
    6 Version:      1.0
     6Version:      1.0.2
    77Author:       orcas
    88Author URI:   https://www.orcas.de/
     
    346346
    347347    public static function displayExpiredMessage() {
    348         $messages = get_posts(array(
     348        $messages = get_posts(apply_filters('gdpr_link_params', array(
    349349            'posts_per_page' => - 1,
    350350            'post_type'      => 'gdpr-notice-page',
     
    358358                )
    359359            )
    360         ));
     360        )));
    361361        /** @var WP_Post $message */
    362362        foreach ($messages as $message) {
     
    366366
    367367    public function displayInformationalContent() {
    368         $messages = get_posts(array(
     368        $messages = get_posts(apply_filters('gdpr_link_params', array(
    369369            'posts_per_page' => - 1,
    370370            'post_type'      => 'gdpr-notice-page',
     
    378378                )
    379379            )
    380         ));
     380        )));
    381381        /** @var WP_Post $message */
    382382        foreach ($messages as $message) {
  • gdpr-notice-original/trunk/readme.txt

    r1868515 r1868954  
    55Requires at least: 3.4
    66Requires PHP: 5.2.4
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2929* _Reject message_: This message will appear when the user clicks the reject button
    3030* _Policy changed message_: This message will be displayed whenever you updated any of the messages. It is used to inform the user that things have changed.
     31
     32== Changelog ==
     33= 1.0.2 =
     34Fixed language-related soft lock
     35
     36= 1.0 =
     37Initial
Note: See TracChangeset for help on using the changeset viewer.