|
@@ 2129-2133 (lines=5) @@
|
| 2126 |
|
$error = __( 'This invoice is only viewable by clicking on the invoice link that sent to you via email.', 'invoicing' ); |
| 2127 |
|
if ( !empty( $invoice->ID ) && $invoice->has_status( array_keys( wpinv_get_invoice_statuses() ) ) ) { |
| 2128 |
|
if ( is_user_logged_in() ) { |
| 2129 |
|
if ( wpinv_require_login_to_checkout() ) { |
| 2130 |
|
if ( isset( $_GET['invoice_key'] ) && $_GET['invoice_key'] === $invoice->get_key() ) { |
| 2131 |
|
$error = __( 'You are not allowed to view this invoice.', 'invoicing' ); |
| 2132 |
|
} |
| 2133 |
|
} |
| 2134 |
|
} else { |
| 2135 |
|
if ( wpinv_require_login_to_checkout() ) { |
| 2136 |
|
if ( isset( $_GET['invoice_key'] ) && $_GET['invoice_key'] === $invoice->get_key() ) { |
|
@@ 2134-2140 (lines=7) @@
|
| 2131 |
|
$error = __( 'You are not allowed to view this invoice.', 'invoicing' ); |
| 2132 |
|
} |
| 2133 |
|
} |
| 2134 |
|
} else { |
| 2135 |
|
if ( wpinv_require_login_to_checkout() ) { |
| 2136 |
|
if ( isset( $_GET['invoice_key'] ) && $_GET['invoice_key'] === $invoice->get_key() ) { |
| 2137 |
|
$error = __( 'You must be logged in to view this invoice.', 'invoicing' ); |
| 2138 |
|
} |
| 2139 |
|
} |
| 2140 |
|
} |
| 2141 |
|
} else { |
| 2142 |
|
$error = __( 'This invoice is deleted or does not exist.', 'invoicing' ); |
| 2143 |
|
} |