Happy_Alien Posted May 27, 2009 Share Posted May 27, 2009 Link to comment Share on other sites More sharing options...
Happy_Alien Posted June 8, 2009 Author Share Posted June 8, 2009 Solved :o) Bad HTML_OUTPUT.PHP was that "bastard" what made that problem :) Link to comment Share on other sites More sharing options...
ill3 Posted March 23, 2010 Share Posted March 23, 2010 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.