Below is the mod code from here
Code: Select all
function tep_session_is_registered($variable) {
if(isset($_SESSION[$variable])) {
return true;
} else {
return false;
}
}
Here is the original code that makes the cart for the customer show back up.
Thank you very much
Karen
Code: Select all
function tep_session_is_registered($variable) {
return session_is_registered($variable);
}
Is it because I have customer groups. I am totally lost on this. I have someone else checking on it as well but I thought you may know since you had written the code. Do I need that part of the code since everything else seems to work. Our host is going to php5 and mysql 5 next week.