Plugin Directory

Changeset 3199306


Ignore:
Timestamp:
11/29/2024 09:06:59 AM (14 months ago)
Author:
husobj
Message:

Version 1.4.5

Location:
page-parts/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • page-parts/trunk/CHANGELOG.md

    r3194519 r3199306  
    44
    55## [Unreleased]
     6
     7## [1.4.5] - 2024-11-29
     8
     9### Fixed
     10- Fix error caused by incorrectly implemented wp_kses().
    611
    712## [1.4.4] - 2024-11-21
     
    150155- First public release.
    151156
    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
    153159[1.4.4]: https://github.com/benhuson/page-parts/compare/1.4.3...1.4.4
    154160[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  
    289289        $add_url = admin_url( sprintf( 'post-new.php?post_type=page-part&parent_id=%s', $post->ID ) );
    290290
    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 ) . '"' );
    292292
    293293    }
  • page-parts/trunk/page-parts.php

    r3194519 r3199306  
    55Plugin URI: https://github.com/benhuson/page-parts
    66Description: Manage subsections of a page.
    7 Version: 1.4.4
     7Version: 1.4.5
    88Author: Ben Huson
    99Author URI: https://github.com/benhuson
     
    1111*/
    1212
    13 define( 'PAGE_PARTS_VERSION', '1.4.4' );
     13define( 'PAGE_PARTS_VERSION', '1.4.5' );
    1414define( 'PAGE_PARTS_FILE', __FILE__ );
    1515
  • page-parts/trunk/readme.txt

    r3194519 r3199306  
    44Requires at least: 3.9
    55Tested up to: 6.7.1
    6 Stable tag: 1.4.4
     6Stable tag: 1.4.5
    77License: GPL2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939= Unreleased =
     40
     41= 1.4.5 =
     42
     43__Fixed__
     44- Fix error caused by incorrectly implemented wp_kses().
     45
    4046
    4147= 1.4.4 =
Note: See TracChangeset for help on using the changeset viewer.