Changeset 6263
- Timestamp:
- 12/13/2017 07:30:55 PM (8 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts
- Files:
-
- 2 edited
-
result-set.php (modified) (1 diff)
-
single-result.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/result-set.php
r6262 r6263 49 49 ?> 50 50 <tr> 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> 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></td> 59 52 <td><?php echo esc_html( $host ); ?></td> 60 53 <td><?php echo esc_html( Display::get_display_php_version( $report->ID ) ); ?></td> -
sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php
r6262 r6263 24 24 <?php endif; ?> 25 25 26 <p><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> 27 <?php 28 $display_time = Display::get_display_time( $report->ID ); 29 if ( $display_time ) : 30 ?> 31 <br /><small><?php echo esc_html( $display_time ); ?></small> 32 <?php endif; ?> 33 </p> 26 <p><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></p> 34 27 35 28 <h2>Environment</h2>
Note: See TracChangeset
for help on using the changeset viewer.