QUOTE (gugush @ May 9 2008, 09:09 PM)

thats mean we sell our store, instead of item, because this is what written in customer's recipe under item name. this is bad! we really need some solution for it. please anybody, who knows this script, help to fix it.
I don't understand why in the php script it says "item name' => STORE NAME";
$process_button_string =
'';
Is there supose to be a string in here? $parameters = array('cmd' => '_xclick',
'item_name' => STORE_NAME, I changed "STORE_NAME" to "Sale" at least it looks better.
'shipping' => $this->format_raw($order->info['shipping_cost']),
'tax' => $this->format_raw($order->info['tax']),
'business' => MODULE_PAYMENT_PAYPAL_STANDARD_ID,
'amount' => $this->format_raw($order->info['total'] - $order->info['shipping_cost'] - $order->info['tax']),
'currency_code' => $currency,
'invoice' => substr($cart_PayPal_Standard_ID, strpos($cart_PayPal_Standard_ID, '-')+1),
'custom' => $customer_id,
'no_note' => '1',
'notify_url' => tep_href_link('ext/modules/payment/paypal/standard_ipn.php', '', 'SSL', false, false),
'return' => tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL'),
'cancel_return' => tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL'),
'bn' => 'osCommerce22_Default_ST',
'paymentaction' => ((MODULE_PAYMENT_PAYPAL_STANDARD_TRANSACTION_METHOD == 'Sale') ? 'sale' : 'authorization'));
I don't claim to understand php but should this not in some way refer to the item? not the store name.
Jack