Make WordPress Core

Ticket #30375: 30375.diff

File 30375.diff, 1.6 KB (added by johnbillion, 10 years ago)
  • src/wp-admin/includes/plugin-install.php

     
    463463                                $_rating = $api->num_ratings ? ( $ratecount / $api->num_ratings ) : 0;
    464464                                ?>
    465465                                <div class="counter-container">
    466                                         <a href="https://wordpress.org/support/view/plugin-reviews/<?php echo $api->slug; ?>?filter=<?php echo $key; ?>"
     466                                        <span class="counter-label"><a href="https://wordpress.org/support/view/plugin-reviews/<?php echo $api->slug; ?>?filter=<?php echo $key; ?>"
    467467                                           target="_blank"
    468                                            title="<?php echo esc_attr( sprintf( _n( 'Click to see reviews that provided a rating of %d star', 'Click to see reviews that provided a rating of %d stars', $key ), $key ) ); ?>">
    469                                                 <span class="counter-label"><?php printf( _n( '%d star', '%d stars', $key ), $key ); ?></span>
    470                                                 <span class="counter-back">
    471                                                         <span class="counter-bar" style="width: <?php echo 92 * $_rating; ?>px;"></span>
    472                                                 </span>
    473                                         </a>
     468                                           title="<?php echo esc_attr( sprintf( _n( 'Click to see reviews that provided a rating of %d star', 'Click to see reviews that provided a rating of %d stars', $key ), $key ) ); ?>"><?php printf( _n( '%d star', '%d stars', $key ), $key ); ?></a></span>
     469                                        <span class="counter-back">
     470                                                <span class="counter-bar" style="width: <?php echo 92 * $_rating; ?>px;"></span>
     471                                        </span>
    474472                                        <span class="counter-count"><?php echo number_format_i18n( $ratecount ); ?></span>
    475473                                </div>
    476474                                <?php