Summary:
Not really a feature, but a change I implemented.
Detailed Description:
When sending the product description to PayPal that contains \" , the
description gets cut of
at the first occurrence of a \" in that description.
I applied a change to my module PaypalGateway.nodule.php at line 393:
and changed:
$parms['item_name_'.$count] = $name;
to:
$parms['item_name_'.$count] = htmlspecialchars($name);
Maybe to be considered in future releases of this module