Changeset 9884 for sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/result-set.php
- Timestamp:
- 05/19/2020 05:33:14 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/result-set.php
r7227 r9884 18 18 foreach ( $revisions as $revision ) : 19 19 $rev_id = (int) ltrim( $revision->post_name, 'r' ); 20 ?>20 ?> 21 21 <tr> 22 22 <th colspan="<?php echo (int) $total_cols; ?>"><a href="<?php echo esc_url( sprintf( 'https://core.trac.wordpress.org/changeset/%d', $rev_id ) ); ?>">r<?php echo (int) $rev_id; ?></a>: <?php echo wp_kses_post( apply_filters( 'the_title', $revision->post_title ) ); ?></th> … … 24 24 <?php 25 25 $query_args = array( 26 'posts_per_page' => 10,26 'posts_per_page' => $posts_per_page, 27 27 'post_type' => 'result', 28 28 'post_parent' => $revision->ID, … … 48 48 } 49 49 $host .= get_avatar( 50 $user->ID, 18, '', '', array( 50 $user->ID, 51 18, 52 '', 53 '', 54 array( 51 55 'extra_attr' => 'style="vertical-align: middle;margin-right:5px;"', 52 56 ) … … 70 74 <td><?php echo esc_html( Display::get_display_mysql_version( $report->ID ) ); ?></td> 71 75 </tr> 72 <?php76 <?php 73 77 endforeach; 74 78 else : 75 ?>79 ?> 76 80 <tr> 77 81 <td></td>
Note: See TracChangeset
for help on using the changeset viewer.