Changeset 5806 for sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/result-set.php
- Timestamp:
- 08/16/2017 01:10:07 PM (8 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
r5805 r5806 8 8 <tr> 9 9 <th style="width:100px">Revision</th> 10 <th style="width:100px">Status</th>11 10 <th>Host</th> 12 11 <th>PHP Version</th> … … 17 16 <tbody> 18 17 <?php 19 $total_cols = 6;18 $total_cols = 5; 20 19 foreach ( $revisions as $revision ) : 21 20 $rev_id = (int) ltrim( $revision->post_name, 'r' ); … … 50 49 ?> 51 50 <tr> 52 <td></td> 53 <td><a href="<?php echo esc_url( get_permalink( $report->ID ) ); ?>" title="<?php echo esc_attr( $status_title ); ?>" class="<?php echo esc_attr( 'ptr-status-badge ptr-status-badge-' . strtolower( $status ) ); ?>"><?php echo esc_html( $status ); ?></a></td> 51 <td><a href="<?php echo esc_url( get_permalink( $report->ID ) ); ?>" title="<?php echo esc_attr( $status_title ); ?>" class="<?php echo esc_attr( 'ptr-status-badge ptr-status-badge-' . strtolower( $status ) ); ?>"><?php echo esc_html( $status ); ?></a> 52 <?php 53 $display_time = Display::get_display_time( $report->ID ); 54 if ( $display_time ) : 55 ?> 56 <br /><small><?php echo esc_html( $display_time ); ?></small> 57 <?php endif; ?> 58 </td> 54 59 <td><?php echo esc_html( $host ); ?></td> 55 60 <td><?php echo esc_html( Display::get_display_php_version( $report->ID ) ); ?></td>
Note: See TracChangeset
for help on using the changeset viewer.