Ticket #28852: 28852.patch
File 28852.patch, 742 bytes (added by , 11 years ago) |
---|
-
wp-admin/includes/template.php
2135 2135 $title = sprintf( __( '%s rating' ), number_format_i18n( $rating, 1 ) ); 2136 2136 } 2137 2137 2138 echo '<div class="star-rating" title="' . esc_attr( $title ) . '"> ';2138 echo '<div class="star-rating" title="' . esc_attr( $title ) . '"><span class="screen-reader-text">' . esc_attr( $title ) . '</span>'; 2139 2139 echo str_repeat( '<div class="star star-full"></div>', $full_stars ); 2140 2140 echo str_repeat( '<div class="star star-half"></div>', $half_stars ); 2141 2141 echo str_repeat( '<div class="star star-empty"></div>', $empty_stars);