inetchoices Posted December 20, 2003 Posted December 20, 2003 (edited) I found a bug in this contrib. With products that contain 's, the mod doesn't escape the 's as it should. The contribution is located here. The fix is as follows: Open /catalog/includes/functions/user_tracking.php and find around line 44: $page_desc = $page_desc_values['products_name'];} elseif ($HTTP_GET_VARS['cPath']) { Insert a new line after $page_desc = $page_desc_values['products_name']; like this: $page_desc = $page_desc_values['products_name'];$page_desc = addslashes($page_desc); } elseif ($HTTP_GET_VARS['cPath']) This will fix any SQL Syntax errors you receive when using this mod with products that contain 's. hth, Khim~ Edited December 20, 2003 by inetchoices Quote Do not meddle in the affairs of Dragons, for you are crunchy and good with ketchup :-)
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.