Guest Posted October 18, 2007 Share Posted October 18, 2007 HELP! I've been receiving this message for over a week and don't know what to do Fatal error: Call to undefined function: tep_hide_session_id() in /hermes/web07/b2319/pow.teddy4hire/htdocs/shoppingbag/admin/includes/classes/split_page_results.php on line 80 Does anyone knw what this means and how to rectify it? Thanks...Teddy Link to comment Share on other sites More sharing options...
Jan Zonjee Posted October 18, 2007 Share Posted October 18, 2007 HELP! I've been receiving this message for over a week and don't know what to do Fatal error: Call to undefined function: tep_hide_session_id() in /hermes/web07/b2319/pow.teddy4hire/htdocs/shoppingbag/admin/includes/classes/split_page_results.php on line 80 Does anyone knw what this means and how to rectify it? It means what it says: undefined function so the code that is loaded on that page doesn't contain the code from includes/functions/html_output.php where this particular function is found: //// // Hide form elements function tep_hide_session_id() { global $session_started, $SID; if (($session_started == true) && tep_not_null($SID)) { return tep_draw_hidden_field(tep_session_name(), tep_session_id()); } } So that file has to be included. For example with a include_once(DIR_FS_ADMIN . DIR_WS_FUNCTIONS . 'html_output.php'); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.