Skip to content

Commit

Permalink
Fix #2481
Browse files Browse the repository at this point in the history
  • Loading branch information
ravinderk committed Dec 8, 2017
1 parent 3f70482 commit 88589f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion includes/admin/donors/donors.php
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ function give_donor_view( $donor ) {
<?php foreach ( $payments as $payment ) : ?>
<tr>
<td><?php echo $payment->ID; ?></td>
<td><?php echo give_donation_amount( $payment->ID, 'donor' ); ?></td>
<td><?php echo give_donation_amount( $payment->ID ); ?></td>
<td><?php echo date_i18n( give_date_format(), strtotime( $payment->post_date ) ); ?></td>
<td><?php echo give_get_payment_status( $payment, true ); ?></td>
<td>
Expand Down
2 changes: 1 addition & 1 deletion templates/shortcode-receipt.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

$give_receipt_args['donation_receipt']['total_donation'] = array(
'name' => __( 'Total Donation', 'give' ),
'value' => give_donation_amount( $donation_id, 'receipt' ),
'value' => give_donation_amount( $donation_id ),
'display' => $give_receipt_args['price'],
);

Expand Down

0 comments on commit 88589f3

Please sign in to comment.