Skip to content

Commit

Permalink
fix: withdraw request amount in approved & cancelled email (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
saimonh3 authored and sabbir1991 committed Jan 25, 2019
1 parent 766ea7a commit 4425bad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion templates/emails/withdraw-approve.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
<p>
<?php esc_html_e( 'You sent a withdraw request of:', 'dokan-lite' ); ?>
<br>
<?php esc_html_e( 'Amount : '.$data['amount'], 'dokan-lite' ); ?>
<?php esc_html_e( 'Amount : ', 'dokan-lite' ); ?>
<?php echo $data['amount']; ?>
<br>
<?php esc_html_e( 'Method : '.$data['method'], 'dokan-lite' ); ?>
</p>
Expand Down
3 changes: 2 additions & 1 deletion templates/emails/withdraw-cancel.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
<p>
<?php esc_html_e( 'You sent a withdraw request of:', 'dokan-lite' ); ?>
<br>
<?php esc_html_e( 'Amount : '.$data['amount'], 'dokan-lite' ); ?>
<?php esc_html_e( 'Amount : ', 'dokan-lite' ); ?>
<?php echo $data['amount']; ?>
<br>
<?php esc_html_e( 'Method : '.$data['method'], 'dokan-lite' ); ?>
</p>
Expand Down

0 comments on commit 4425bad

Please sign in to comment.