diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 6503e74d7e..410c980cd2 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -2071,9 +2071,9 @@ function wp_star_rating( $args = array() ) { $output = '
'; $output .= '' . $title . ''; - $output .= str_repeat( '
', $full_stars ); - $output .= str_repeat( '
', $half_stars ); - $output .= str_repeat( '
', $empty_stars ); + $output .= str_repeat( '', $full_stars ); + $output .= str_repeat( '', $half_stars ); + $output .= str_repeat( '', $empty_stars ); $output .= '
'; if ( $r['echo'] ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 3ae83df625..b6b00964cb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37329'; +$wp_version = '4.6-alpha-37330'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.