bigbob2 0 Posted February 21, 2012 (edited) Can anyone who has this contribution installed, please tell me how to correct the error I am getting on a fresh install of this contribution when I click on the send email page. Fatal error: Call to undefined function tep_hide_session_id() in /home/server/public_html/catalog/admin/mm_email.php on line 96 Edited February 21, 2012 by bigbob2 Share this post Link to post Share on other sites
PupStar 58 Posted February 21, 2012 Kevin, open admin/includes/functions/html_output.php and ensure you have this code in there //// // Hide form elements function tep_hide_session_id() { $string = ''; if (defined('SID') && tep_not_null(SID)) { $string = tep_draw_hidden_field(tep_session_name(), tep_session_id()); } return $string; } If not add it and see what happens. Mark Bootstrap 3 ROCKS! (or it will if I ever get my head around it lol) (and I think I have now (w00t) ) Share this post Link to post Share on other sites
bigbob2 0 Posted February 21, 2012 Mark, you are a legend! I don't understand what you did, but it makes it all work perfectly! Thanks heaps Kev Share this post Link to post Share on other sites