Home » Item #510
I am using CactuShop v4.7xx.
When adding items to the wish list, the quantities appear incorrect.
There was a bug in the code on line 91 of wishlist_edit_process.asp:
This:
For i = 1 to 50
qty = replace(items, "zz", "z")
Next
Should read:
For i = 1 to 50
qty = replace(qty, "zz", "z")
Next
This was fixed with v4.714 and only affected some earlier v4.7 versions.