Changeset 1868954
- Timestamp:
- 05/04/2018 10:37:11 PM (8 years ago)
- Location:
- gdpr-notice-original/trunk
- Files:
-
- 2 edited
-
gdpr-notice-original.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gdpr-notice-original/trunk/gdpr-notice-original.php
r1868016 r1868954 4 4 Plugin URI: https://www.orcas.de/wordpress-plugin/dsgvo-notiz/ 5 5 Description: New privacy standard for may 2018 6 Version: 1.0 6 Version: 1.0.2 7 7 Author: orcas 8 8 Author URI: https://www.orcas.de/ … … 346 346 347 347 public static function displayExpiredMessage() { 348 $messages = get_posts(a rray(348 $messages = get_posts(apply_filters('gdpr_link_params', array( 349 349 'posts_per_page' => - 1, 350 350 'post_type' => 'gdpr-notice-page', … … 358 358 ) 359 359 ) 360 )) ;360 ))); 361 361 /** @var WP_Post $message */ 362 362 foreach ($messages as $message) { … … 366 366 367 367 public function displayInformationalContent() { 368 $messages = get_posts(a rray(368 $messages = get_posts(apply_filters('gdpr_link_params', array( 369 369 'posts_per_page' => - 1, 370 370 'post_type' => 'gdpr-notice-page', … … 378 378 ) 379 379 ) 380 )) ;380 ))); 381 381 /** @var WP_Post $message */ 382 382 foreach ($messages as $message) { -
gdpr-notice-original/trunk/readme.txt
r1868515 r1868954 5 5 Requires at least: 3.4 6 6 Requires PHP: 5.2.4 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 * _Reject message_: This message will appear when the user clicks the reject button 30 30 * _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 = 34 Fixed language-related soft lock 35 36 = 1.0 = 37 Initial
Note: See TracChangeset
for help on using the changeset viewer.