
Originally Posted by
2marco
Same problem here. Also with all special german characters. A fix or solution will be very appreciated. Update for Zen1.5 also
thanks
2marco, we had this fixed. I looked around in the files as best I could and found the following.
in admin/includes/modules/pdfoc/templates/Packing-Slip.php
I compared an old backup to the more recent file and found the following change. Not sure if this is it but I hope it helps. It's the only change I found in the module.
old:
Code:
$prod_str = $order->products[$i]['qty'] . " x " . $order->products[$i]['name'];
new:
Code:
$prod_str = $order->products[$i]['qty'] . " x " . html_entity_decode($order->products[$i]['name'], ENT_QUOTES);