Changeset 3199306
- Timestamp:
- 11/29/2024 09:06:59 AM (14 months ago)
- Location:
- page-parts/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (2 diffs)
-
admin/page-parts-list-table.php (modified) (1 diff)
-
page-parts.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
page-parts/trunk/CHANGELOG.md
r3194519 r3199306 4 4 5 5 ## [Unreleased] 6 7 ## [1.4.5] - 2024-11-29 8 9 ### Fixed 10 - Fix error caused by incorrectly implemented wp_kses(). 6 11 7 12 ## [1.4.4] - 2024-11-21 … … 150 155 - First public release. 151 156 152 [Unreleased]: https://github.com/benhuson/page-parts/compare/1.4.4...HEAD 157 [Unreleased]: https://github.com/benhuson/page-parts/compare/1.4.5...HEAD 158 [1.4.4]: https://github.com/benhuson/page-parts/compare/1.4.4...1.4.5 153 159 [1.4.4]: https://github.com/benhuson/page-parts/compare/1.4.3...1.4.4 154 160 [1.4.3]: https://github.com/benhuson/page-parts/compare/1.4.2...1.4.3 -
page-parts/trunk/admin/page-parts-list-table.php
r3194519 r3199306 289 289 $add_url = admin_url( sprintf( 'post-new.php?post_type=page-part&parent_id=%s', $post->ID ) ); 290 290 291 printf( wp_kses( __( 'No page parts found. <a %s>Add one?</a>', 'page-parts' ) ), 'href="' . esc_attr( $add_url ) . '"' );291 printf( wp_kses( __( 'No page parts found. <a %s>Add one?</a>', 'page-parts' ), 'post' ), 'href="' . esc_attr( $add_url ) . '"' ); 292 292 293 293 } -
page-parts/trunk/page-parts.php
r3194519 r3199306 5 5 Plugin URI: https://github.com/benhuson/page-parts 6 6 Description: Manage subsections of a page. 7 Version: 1.4. 47 Version: 1.4.5 8 8 Author: Ben Huson 9 9 Author URI: https://github.com/benhuson … … 11 11 */ 12 12 13 define( 'PAGE_PARTS_VERSION', '1.4. 4' );13 define( 'PAGE_PARTS_VERSION', '1.4.5' ); 14 14 define( 'PAGE_PARTS_FILE', __FILE__ ); 15 15 -
page-parts/trunk/readme.txt
r3194519 r3199306 4 4 Requires at least: 3.9 5 5 Tested up to: 6.7.1 6 Stable tag: 1.4. 46 Stable tag: 1.4.5 7 7 License: GPL2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 39 39 = Unreleased = 40 41 = 1.4.5 = 42 43 __Fixed__ 44 - Fix error caused by incorrectly implemented wp_kses(). 45 40 46 41 47 = 1.4.4 =
Note: See TracChangeset
for help on using the changeset viewer.