Changeset 37330 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 04/30/2016 02:32:40 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r37279 r37330 2072 2072 $output = '<div class="star-rating">'; 2073 2073 $output .= '<span class="screen-reader-text">' . $title . '</span>'; 2074 $output .= str_repeat( '<div class="star star-full" ></div>', $full_stars );2075 $output .= str_repeat( '<div class="star star-half" ></div>', $half_stars );2076 $output .= str_repeat( '<div class="star star-empty" ></div>', $empty_stars );2074 $output .= str_repeat( '<div class="star star-full" aria-hidden="true"></div>', $full_stars ); 2075 $output .= str_repeat( '<div class="star star-half" aria-hidden="true"></div>', $half_stars ); 2076 $output .= str_repeat( '<div class="star star-empty" aria-hidden="true"></div>', $empty_stars ); 2077 2077 $output .= '</div>'; 2078 2078
Note: See TracChangeset
for help on using the changeset viewer.