|
Hi
I just found an error in this extention. If a product is bought which has a column (:) sign in the product name the protx request will fail. This is because the (:) is not escaped by the extention and (:) is used as field separator by protx.
my temporary fix looks as follows:
was:
$resultParts[] = $item->getName();
fixed:
$resultParts[] = str_replace(':', ' ', $item->getName());
line 141 in app/code/core/Mage/Protx/Model/Standard.php
|