View Single Post
  #2  
Old 03-16-2005, 03:50 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

You'd have to edit the include/login.php

Find this code:

Code:
if(!func_is_cart_empty($cart)) func_header_location($redirect_to."/cart.php"); else func_header_location($redirect_to."/home.php");

Change it to (substitute specials.php) for your script:

Code:
if(!func_is_cart_empty($cart)) func_header_location($redirect_to."/cart.php"); else func_header_location($redirect_to."/specials.php");
Reply With Quote