Changeset 3249325
- Timestamp:
- 03/03/2025 12:21:10 AM (13 months ago)
- Location:
- newpost-catch
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.22 (copied) (copied from newpost-catch/trunk)
-
tags/1.3.22/class.php (modified) (3 diffs)
-
tags/1.3.22/newpost-catch.php (modified) (1 diff)
-
tags/1.3.22/readme.txt (modified) (1 diff)
-
trunk/class.php (modified) (3 diffs)
-
trunk/newpost-catch.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
newpost-catch/tags/1.3.22/class.php
r3244173 r3249325 108 108 } 109 109 110 echo esc_html( $before_widget );111 112 if ( $title ) echo esc_html( $before_title . $title . $after_title );110 echo wp_kses_post( $before_widget ); 111 112 if ( $title ) echo wp_kses_post( $before_title . $title . $after_title ); 113 113 114 114 $sticky_posts = get_option( 'sticky_posts' ); … … 158 158 <div class="detail"> 159 159 <span class="title"><?php echo esc_html( $post_title ); ?></span> 160 <?php echo esc_html( $post_date ); ?>160 <?php echo wp_kses_post( $post_date ); ?> 161 161 </div> 162 162 </a> … … 170 170 </ul> 171 171 <?php 172 echo esc_html( $after_widget );172 echo wp_kses_post( $after_widget ); 173 173 } 174 174 -
newpost-catch/tags/1.3.22/newpost-catch.php
r3244173 r3249325 4 4 Plugin URI: http://www.imamura.biz/blog/newpost-catch/ 5 5 Description: Thumbnails in new articles setting widget. 6 Version: 1.3.2 16 Version: 1.3.22 7 7 Author: Tetsuya Imamura 8 8 Text Domain: newpost-catch -
newpost-catch/tags/1.3.22/readme.txt
r3244173 r3249325 6 6 Requires PHP: 7.2 7 7 Tested up to: 6.7 8 Stable tag: 1.3.2 18 Stable tag: 1.3.22 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
newpost-catch/trunk/class.php
r3244173 r3249325 108 108 } 109 109 110 echo esc_html( $before_widget );111 112 if ( $title ) echo esc_html( $before_title . $title . $after_title );110 echo wp_kses_post( $before_widget ); 111 112 if ( $title ) echo wp_kses_post( $before_title . $title . $after_title ); 113 113 114 114 $sticky_posts = get_option( 'sticky_posts' ); … … 158 158 <div class="detail"> 159 159 <span class="title"><?php echo esc_html( $post_title ); ?></span> 160 <?php echo esc_html( $post_date ); ?>160 <?php echo wp_kses_post( $post_date ); ?> 161 161 </div> 162 162 </a> … … 170 170 </ul> 171 171 <?php 172 echo esc_html( $after_widget );172 echo wp_kses_post( $after_widget ); 173 173 } 174 174 -
newpost-catch/trunk/newpost-catch.php
r3244173 r3249325 4 4 Plugin URI: http://www.imamura.biz/blog/newpost-catch/ 5 5 Description: Thumbnails in new articles setting widget. 6 Version: 1.3.2 16 Version: 1.3.22 7 7 Author: Tetsuya Imamura 8 8 Text Domain: newpost-catch -
newpost-catch/trunk/readme.txt
r3244173 r3249325 6 6 Requires PHP: 7.2 7 7 Tested up to: 6.7 8 Stable tag: 1.3.2 18 Stable tag: 1.3.22 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.