Skip to content

Commit

Permalink
fix: product tab vendor info escaping issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbir1991 committed Dec 14, 2018
1 parent 74e9d73 commit 4804241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/global/product-tab.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
<li class="store-address">
<span><b><?php esc_html_e( 'Address:', 'dokan-lite' ); ?></b></span>
<span class="details">
<?php echo esc_attr( dokan_get_seller_address( $author->ID ) ) ?>
<?php echo wp_kses_post( dokan_get_seller_address( $author->ID ) ) ?>
</span>
</li>
<?php } ?>

<li class="clearfix">
<?php dokan_get_readable_seller_rating( $author->ID ); ?>
<?php echo wp_kses_post( dokan_get_readable_seller_rating( $author->ID ) ); ?>
</li>

<?php do_action( 'dokan_product_seller_tab_end', $author, $store_info ); ?>
Expand Down

0 comments on commit 4804241

Please sign in to comment.