Changeset 14061 for sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php
- Timestamp:
- 09/18/2024 02:32:35 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php
r10346 r14061 25 25 ) 26 26 ); 27 if ( ! empty( $user->user_url ) ) {28 $host .= '</a>';29 }30 if ( ! empty( $user->user_url ) ) {31 $host .= '<a target="_blank" rel="nofollow" href="' . esc_url( $user->user_url ) . '">';32 }33 27 $host .= $user->display_name; 34 28 if ( ! empty( $user->user_url ) ) { … … 54 48 <td><strong>Host</strong></td> 55 49 <td><?php echo wp_kses_post( $host ); ?></td> 50 </tr> 51 <tr> 52 <td><strong>Test Date</strong></td> 53 <td> 54 <?php the_date(); ?> 55 <?php the_time(); ?> 56 </td> 57 </tr> 58 <tr> 59 <td><strong>Execution Time</strong></td> 60 <td> 61 <?php echo esc_html( Display::get_display_time( $report->ID ) ); ?> 62 </td> 63 </tr> 64 <tr> 65 <td><strong>Environment Name</strong></td> 66 <td> 67 <?php echo esc_html( Display::get_display_environment_name( $report->ID ) ); ?> 68 </td> 56 69 </tr> 57 70 <tr>
Note: See TracChangeset
for help on using the changeset viewer.