Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Calendar in Specials doesn't work


Happy_Alien

Recommended Posts

  • 2 weeks later...
  • 9 months later...

I had this same problem but unfortunately Happy_Alien did not post details on where the error was. After looking through some calls I was able to find the problem. The function initially takes the additional input as $parameters but later all function calls are looking for the $params variable. Easiest fix is to make the change below.

 

in file: /catalog/admin/includes/functions/html_output.php (Approx Line# 72, ymmv)

Find:

 function tep_image($src, $alt = '', $width = '', $height = '', $parameters = '') {

 

Change to:

 function tep_image($src, $alt = '', $width = '', $height = '', $params = '') {

 

This error is also present in the other html_output.php files (/catalog/includes/, etc.) so you may wish to make the same changes there as well.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...