Hello,
Not sure if this is a bug, but the following clears out the product shipping location instead of updating it. Am I not allowed to update this using node_save?
<?php
$nid = 2;
$prod = node_load($nid);
$prod->shipping_address->street1 = "123 Main St.";
node_save($prod);
?>I'm using DRUPAL-6--2-0-RC6 and see that function uc_quote_nodeapi in uc_quote.module is checking for $node->street1. Shouldn't it be checking $node->shipping_address-street1 instead?
We use node_save quite a bit. If this is intended behavior, is there a suggested workaround?
Thanks for any help,
Edwin-
EDIT: all node_save calls clear out the shipping location address. 
<?php
$nid = 2;
$prod = node_load($nid);
node_save($prod);
?>
