|
@@ 1603-1606 (lines=4) @@
|
| 1600 |
|
|
| 1601 |
|
$invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
| 1602 |
|
$user_can_view = wpinv_can_view_receipt( $invoice_key ); |
| 1603 |
|
if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
| 1604 |
|
$invoice_id = (int)$_GET['invoice-id']; |
| 1605 |
|
$user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
| 1606 |
|
} |
| 1607 |
|
|
| 1608 |
|
// Key was provided, but user is logged out. Offer them the ability to login and view the receipt |
| 1609 |
|
if ( ! $user_can_view && ! empty( $invoice_key ) && ! is_user_logged_in() ) { |
|
@@ 1688-1691 (lines=4) @@
|
| 1685 |
|
|
| 1686 |
|
$invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
| 1687 |
|
$user_can_view = wpinv_can_view_receipt( $invoice_key ); |
| 1688 |
|
if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
| 1689 |
|
$invoice_id = (int)$_GET['invoice-id']; |
| 1690 |
|
$user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
| 1691 |
|
} |
| 1692 |
|
|
| 1693 |
|
if ( $invoice_id && $user_can_view && ( $invoice = wpinv_get_invoice( $invoice_id ) ) ) { |
| 1694 |
|
if ( $invoice->needs_payment() ) { |