ecivicrm does not update the transaction address, in my code I need to pass the address to the psp for avs checking
$t = store_transaction_load($txnid);
$form['bill_addr_1'] = array(
'#type' => 'hidden',
'#name' => 'bill_addr_1',
'#value' => $t->address['billing']->street1
);
In the address module this works fine, however when address module is disabled and ecivicrm is enabled, this does not store anything in this array (or at least at this point)
Thanks,
Malcolm
Comments
Comment #1
gordon commentedThe problem was the ecivicrm was dumping a transaction object into the address field of the form.
Comment #2
(not verified) commented