Plugin Directory

Changeset 3276052


Ignore:
Timestamp:
04/17/2025 04:16:59 PM (9 months ago)
Author:
rbaer
Message:

fixed bug introduced with XSS vulnerability fix in 1.2.1

Location:
list-last-changes/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • list-last-changes/trunk/changelog.txt

    r3274960 r3276052  
    11== Changelog ==
     2
     3= 1.1.0 =
     4
     5*Release date: April 23, 2024*
     6
     7* Configuration to select and order the pages and/or posts by date modified or date published
     8* new field {published_date} in the template string to show the date the page or post was published ("post date")
     9* new field {editor} in the template string to show the last editor of the page or post
    210
    311= 1.0.5 =
  • list-last-changes/trunk/list-last-changes.php

    r3274960 r3276052  
    44 * Plugin URI: http://www.rolandbaer.ch/software/wordpress/plugin-last-changes/
    55 * Description: Shows a list of the last changes of a WordPress site.
    6  * Version: 1.2.1
     6 * Version: 1.2.2
    77 * Author: Roland Bär
    88 * Author URI: http://www.rolandbaer.ch/
     
    113113                "{author}" => '<span class="list_last_changes_author">' . get_the_author_meta( 'display_name', $post->post_author ) . "</span>",
    114114                "{editor}" => '<span class="list_last_changes_author">' . ListLastChangesWidget::get_last_editor($post) . "</span>");
    115             $entry = esc_attr(strtr($template, $transitions));
     115            $entry = strtr(esc_attr($template), $transitions);
    116116            $entry = ListLastChangesWidget::replace_date_format("change_date", $entry, strtotime($post->post_modified));
    117117            $entry = ListLastChangesWidget::replace_date_format("published_date", $entry, strtotime($post->post_date));
  • list-last-changes/trunk/readme.txt

    r3274970 r3276052  
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
    9 Stable tag: 1.2.1
     9Stable tag: 1.2.2
    1010
    1111Shows a list of the last changes of a WordPress site.
     
    7474== Changelog ==
    7575
     76= 1.2.2 =
     77
     78*Release date: April 17, 2025*
     79
     80* fixed bug introduced with XSS vulnerability fix in 1.2.1
     81
    7682= 1.2.1 =
    7783
     
    97103
    98104* Small quality fixes (from static code analyzer)
    99 
    100 = 1.1.0 =
    101 
    102 *Release date: April 23, 2024*
    103 
    104 * Configuration to select and order the pages and/or posts by date modified or date published
    105 * new field {published_date} in the template string to show the date the page or post was published ("post date")
    106 * new field {editor} in the template string to show the last editor of the page or post
    107105
    108106= Older releases =
Note: See TracChangeset for help on using the changeset viewer.