Merge pull request #3138 from tiagonoronha/master
Prevents 'undefined' from showing up in Lightbox
This commit is contained in:
commit
e982a0c0cb
|
@ -68,7 +68,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|||
|
||||
$title_reply = __( 'Be the first to review', 'woocommerce' ).' “'.$post->post_title.'”';
|
||||
|
||||
echo '<p class="noreviews">'.__( 'There are no reviews yet, would you like to <a href="#review_form" class="inline show_review_form">submit yours</a>?', 'woocommerce' ).'</p>';
|
||||
echo '<p class="noreviews">'.__( 'There are no reviews yet, would you like to <a href="#review_form" class="inline show_review_form" title="' . __( 'Add Your Review', 'woocommerce' ) . '">submit yours</a>?', 'woocommerce' ).'</p>';
|
||||
|
||||
endif;
|
||||
|
||||
|
|
Loading…
Reference in New Issue