Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted (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 by inetchoices

Do not meddle in the affairs of Dragons, for you are crunchy and good with ketchup :-)

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...