Changeset 3276052
- Timestamp:
- 04/17/2025 04:16:59 PM (9 months ago)
- Location:
- list-last-changes/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
list-last-changes.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
list-last-changes/trunk/changelog.txt
r3274960 r3276052 1 1 == 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 2 10 3 11 = 1.0.5 = -
list-last-changes/trunk/list-last-changes.php
r3274960 r3276052 4 4 * Plugin URI: http://www.rolandbaer.ch/software/wordpress/plugin-last-changes/ 5 5 * Description: Shows a list of the last changes of a WordPress site. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Author: Roland Bär 8 8 * Author URI: http://www.rolandbaer.ch/ … … 113 113 "{author}" => '<span class="list_last_changes_author">' . get_the_author_meta( 'display_name', $post->post_author ) . "</span>", 114 114 "{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); 116 116 $entry = ListLastChangesWidget::replace_date_format("change_date", $entry, strtotime($post->post_modified)); 117 117 $entry = ListLastChangesWidget::replace_date_format("published_date", $entry, strtotime($post->post_date)); -
list-last-changes/trunk/readme.txt
r3274970 r3276052 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html 9 Stable tag: 1.2. 19 Stable tag: 1.2.2 10 10 11 11 Shows a list of the last changes of a WordPress site. … … 74 74 == Changelog == 75 75 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 76 82 = 1.2.1 = 77 83 … … 97 103 98 104 * 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 published105 * 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 post107 105 108 106 = Older releases =
Note: See TracChangeset
for help on using the changeset viewer.