CMS MADE SIMPLE FORGE

PaypalGateway

 

[#10294] Not really a feature, but a change I implemented.

avatar
Created By: Luc Juvens (sysmaster)
Date Submitted: 2014-11-13 00:33

Assigned To:
Resolution: None
State: Open
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

History