Merge pull request #15094 from bekarice/fix/php-fatal-undefined-function

Fix Fatal Error: undefined function
This commit is contained in:
Mike Jolley 2017-05-16 09:34:38 +01:00 committed by GitHub
commit 59e9477730
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ class WC_Embed {
<?php
/* translators: %s: average rating */
printf(
esc_html_( 'Rated %s out of 5', 'woocommerce' ),
esc_html__( 'Rated %s out of 5', 'woocommerce' ),
esc_html( $_product->get_average_rating() )
);
?>