|
@@ 448-452 (lines=5) @@
|
| 445 |
|
$meta_key = str_replace( '_give_donor_billing_', '', $meta_key ); |
| 446 |
|
|
| 447 |
|
switch ( $meta_key ) { |
| 448 |
|
case 'address1': |
| 449 |
|
if ( isset( $donation_meta['user_info']['address']['line1'] ) ) { |
| 450 |
|
$check = $donation_meta['user_info']['address']['line1']; |
| 451 |
|
} |
| 452 |
|
break; |
| 453 |
|
|
| 454 |
|
case 'address2': |
| 455 |
|
if ( isset( $donation_meta['user_info']['address']['line2'] ) ) { |
|
@@ 454-458 (lines=5) @@
|
| 451 |
|
} |
| 452 |
|
break; |
| 453 |
|
|
| 454 |
|
case 'address2': |
| 455 |
|
if ( isset( $donation_meta['user_info']['address']['line2'] ) ) { |
| 456 |
|
$check = $donation_meta['user_info']['address']['line2']; |
| 457 |
|
} |
| 458 |
|
break; |
| 459 |
|
|
| 460 |
|
default: |
| 461 |
|
if ( isset( $donation_meta['user_info']['address'][ $meta_key ] ) ) { |