|
@@ 1598-1601 (lines=4) @@
|
| 1595 |
|
|
| 1596 |
|
$invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
| 1597 |
|
$user_can_view = wpinv_can_view_receipt( $invoice_key ); |
| 1598 |
|
if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
| 1599 |
|
$invoice_id = (int)$_GET['invoice-id']; |
| 1600 |
|
$user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
| 1601 |
|
} |
| 1602 |
|
|
| 1603 |
|
// Key was provided, but user is logged out. Offer them the ability to login and view the receipt |
| 1604 |
|
if ( ! $user_can_view && ! empty( $invoice_key ) && ! is_user_logged_in() ) { |
|
@@ 1683-1686 (lines=4) @@
|
| 1680 |
|
|
| 1681 |
|
$invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
| 1682 |
|
$user_can_view = wpinv_can_view_receipt( $invoice_key ); |
| 1683 |
|
if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
| 1684 |
|
$invoice_id = (int)$_GET['invoice-id']; |
| 1685 |
|
$user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
| 1686 |
|
} |
| 1687 |
|
|
| 1688 |
|
if ( $invoice_id && $user_can_view && ( $invoice = wpinv_get_invoice( $invoice_id ) ) ) { |
| 1689 |
|
if ( $invoice->needs_payment() ) { |