Changeset 61790
- Timestamp:
- 03/03/2026 07:17:15 AM (45 hours ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
wp-admin/includes/class-wp-media-list-table.php (modified) (1 diff)
-
wp-includes/author-template.php (modified) (1 diff)
-
wp-includes/rest-api/class-wp-rest-server.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r61738 r61790 494 494 get_edit_post_link( $post->ID ), 495 495 ); 496 $link_end = '</a>';496 $link_end = '</a>'; 497 497 } 498 498 -
trunk/src/wp-includes/author-template.php
r61745 r61790 335 335 $author = get_the_author(); 336 336 /* translators: %s: Author's display name. */ 337 $title = sprintf( __( 'Posts by %s' ), $author );337 $title = sprintf( __( 'Posts by %s' ), $author ); 338 338 339 339 $link = sprintf( -
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r61703 r61790 1392 1392 $available['jpeg_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/jpeg' ); 1393 1393 /** This filter is documented in wp-includes/class-wp-image-editor-imagick.php */ 1394 $available['png_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/png' );1394 $available['png_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/png' ); 1395 1395 /** This filter is documented in wp-includes/class-wp-image-editor-imagick.php */ 1396 $available['gif_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/gif' );1396 $available['gif_interlaced'] = (bool) apply_filters( 'image_save_progressive', false, 'image/gif' ); 1397 1397 } 1398 1398
Note: See TracChangeset
for help on using the changeset viewer.