Merge pull request #3138 from tiagonoronha/master

Prevents 'undefined' from showing up in Lightbox
This commit is contained in:
Mike Jolley 2013-05-10 04:54:52 -07:00
commit e982a0c0cb
1 changed files with 1 additions and 1 deletions

View File

@ -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;