add(NAVBAR_TITLE); // PWA BOF 2b if (tep_session_is_registered('customer_is_guest')){ //delete the temporary account tep_db_query("delete from " . TABLE_CUSTOMERS . " where customers_id = '" . (int)$customer_id . "'"); } // PWA EOF 2b tep_session_unregister('customer_id'); tep_session_unregister('customer_dob'); tep_session_unregister('customer_default_address_id'); tep_session_unregister('customer_first_name'); // BOF Separate Pricing Per Customer tep_session_unregister('sppc_customer_group_id'); tep_session_unregister('sppc_customer_group_show_tax'); tep_session_unregister('sppc_customer_group_tax_exempt'); if (tep_session_is_registered('sppc_customer_specific_taxes_exempt')) { tep_session_unregister('sppc_customer_specific_taxes_exempt'); } // EOF Separate Pricing Per Customer tep_session_unregister('customer_country_id'); tep_session_unregister('customer_zone_id'); tep_session_unregister('comments'); // PWA BOF tep_session_unregister('customer_is_guest'); // PWA EOF // recently_viewed tep_session_unregister('recently_viewed'); // for customer's security, this line of code removes the recently_viewed info after logoff $cart->reset(); ?> >
|