Making WordPress.org


Ignore:
Timestamp:
05/19/2020 05:33:14 AM (4 years ago)
Author:
dd32
Message:

Bump the PHPUnit Test Reporter plugin to v0.1.2

Props mikeschroder.
Fixes #5214.

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  
    1818        foreach ( $revisions as $revision ) :
    1919            $rev_id = (int) ltrim( $revision->post_name, 'r' );
    20         ?>
     20            ?>
    2121            <tr>
    2222                <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>
     
    2424            <?php
    2525            $query_args   = array(
    26                 'posts_per_page' => 10,
     26                'posts_per_page' => $posts_per_page,
    2727                'post_type'      => 'result',
    2828                'post_parent'    => $revision->ID,
     
    4848                        }
    4949                        $host .= get_avatar(
    50                             $user->ID, 18, '', '', array(
     50                            $user->ID,
     51                            18,
     52                            '',
     53                            '',
     54                            array(
    5155                                'extra_attr' => 'style="vertical-align: middle;margin-right:5px;"',
    5256                            )
     
    7074                    <td><?php echo esc_html( Display::get_display_mysql_version( $report->ID ) ); ?></td>
    7175                </tr>
    72             <?php
     76                    <?php
    7377                endforeach;
    7478            else :
    75             ?>
     79                ?>
    7680                <tr>
    7781                    <td></td>
Note: See TracChangeset for help on using the changeset viewer.