Changeset 6481
- Timestamp:
- 01/31/2018 01:15:50 AM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/result-set.php
r6480 r6481 48 48 $host .= '<a target="_blank" rel="nofollow" href="' . esc_url( $user->user_url ) . '">'; 49 49 } 50 $host .= get_avatar( $user->ID, 18, '', '', array( 51 'extra_attr' => 'style="vertical-align: middle;margin-right:5px;"', 52 ) ); 50 $host .= get_avatar( 51 $user->ID, 18, '', '', array( 52 'extra_attr' => 'style="vertical-align: middle;margin-right:5px;"', 53 ) 54 ); 53 55 if ( ! empty( $user->user_url ) ) { 54 56 $host .= '</a>'; -
sites/trunk/wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/parts/single-result.php
r6480 r6481 16 16 $host .= '<a target="_blank" rel="nofollow" href="' . esc_url( $user->user_url ) . '">'; 17 17 } 18 $host .= get_avatar( $user->ID, 18, '', '', array( 19 'extra_attr' => 'style="vertical-align: middle;margin-right:5px;"', 20 ) ); 18 $host .= get_avatar( 19 $user->ID, 18, '', '', array( 20 'extra_attr' => 'style="vertical-align: middle;margin-right:5px;"', 21 ) 22 ); 21 23 if ( ! empty( $user->user_url ) ) { 22 24 $host .= '</a>';
Note: See TracChangeset
for help on using the changeset viewer.