Hi Guys
First of all, thank you to abdel for identifying what was causing the problem. I have made a fix for it so you can now include double quotes in your product names if necessary.
So for both of you, here's the fix:
Open the file catalog/admin/comment8r.php
Look at (around) line 122, and you should find this line:
| Code: |
echo 'product_names['.$i.']= "'. $arr_model_info[$i] .'";';
|
REPLACE the line above with this line:
| Code: |
echo 'product_names['.$i.']= "'. str_replace('"', '\"',$arr_model_info[$i]) .'";';
|
save the file and test.
thanks again.
Nick