This is just a simple fix to ensure that your session isn't lost if cookies aren't enabled...

I couldn't remember if i had previously modified the file, so i am just listing the change.

Find this line around 104:
Code:
echo '<a href="' . tep_href_link(FILENAME_DEFAULT, 'manufacturers_id=' . $manufacturers['manufacturers_id'] . '=' . $manufacturers['manufacturers_name'], 'NONSSL', false) . '">'. $manufacturers['manufacturers_name'] . ' 
 ';
and change to

Code:
echo '<a href="' . tep_href_link(FILENAME_DEFAULT, 'manufacturers_id=' . $manufacturers['manufacturers_id'] . '=' . $manufacturers['manufacturers_name'], 'NONSSL') . '">'. $manufacturers['manufacturers_name'] . ' 
 ';
That's it! We don't want our customers losing their cart contents now do we...

Rob


More...