|
@@ 478-482 (lines=5) @@
|
| 475 |
|
$payment_meta_key = str_replace( '_give_donor_billing_', '', $meta_key ); |
| 476 |
|
|
| 477 |
|
switch ( $payment_meta_key ) { |
| 478 |
|
case 'address1': |
| 479 |
|
if ( isset( $donation_meta['user_info']['address']['line1'] ) ) { |
| 480 |
|
$check = $donation_meta['user_info']['address']['line1']; |
| 481 |
|
} |
| 482 |
|
break; |
| 483 |
|
|
| 484 |
|
case 'address2': |
| 485 |
|
if ( isset( $donation_meta['user_info']['address']['line2'] ) ) { |
|
@@ 484-488 (lines=5) @@
|
| 481 |
|
} |
| 482 |
|
break; |
| 483 |
|
|
| 484 |
|
case 'address2': |
| 485 |
|
if ( isset( $donation_meta['user_info']['address']['line2'] ) ) { |
| 486 |
|
$check = $donation_meta['user_info']['address']['line2']; |
| 487 |
|
} |
| 488 |
|
break; |
| 489 |
|
|
| 490 |
|
case 'first_name': |
| 491 |
|
if ( isset( $donation_meta['user_info']['first_name'] ) ) { |