Index: trunk/extensions/DonationInterface/paypal_gateway/IPN/PaypalIPNListener.php |
— | — | @@ -264,8 +264,13 @@ |
265 | 265 | |
266 | 266 | $contribution['street_address'] = $split[0]; |
267 | 267 | $contribution['supplemental_address_1'] = $split[1]; |
268 | | - $contribution['city'] = $post_data['address_city']; |
269 | | - $contribution['original_currency'] = $post_data['mc_currency']; |
| 268 | + $contribution['city'] = $post_data['address_city']; |
| 269 | + $contribution['state_province'] = $post_data['address_state']; |
| 270 | + $contribution['country'] = $post_data['address_country_code']; |
| 271 | + $contribution['postal_code'] = $post_data['address_zip']; |
| 272 | + |
| 273 | + $contribution['gateway_txn_id'] = $post_data['txn_id']; |
| 274 | + $contribution['original_currency'] = $post_data['mc_currency']; |
270 | 275 | $contribution['original_gross'] = $post_data['mc_gross']; |
271 | 276 | $contribution['fee'] = $post_data['mc_fee']; |
272 | 277 | $contribution['gross'] = $post_data['mc_gross']; |