// Merge -> revision 8507

This commit is contained in:
rMalie
2011-09-12 16:17:37 +00:00
parent b404900911
commit a1bdb7b35e
67 changed files with 1938 additions and 1509 deletions
+2 -1
View File
@@ -1086,7 +1086,8 @@ class eBayRequest
if (isset($this->response->OrderArray))
foreach ($this->response->OrderArray->Order as $order)
{
$name = explode(' ', (string)$order->ShippingAddress->Name);
$name = str_replace(array('_', ',', ' '), array('', '', ' '), (string)$order->ShippingAddress->Name);
$name = explode(' ', $name);
$itemList = array();
for ($i = 0; isset($order->TransactionArray->Transaction[$i]); $i++)
{