View Single Post
  #2  
Old 07-04-2005, 11:30 AM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

Try this.

Open include/login.php

FIND:

Code:
else { func_header_location($redirect_to."/home.php"); }

Replace with:

Code:
else { $sendto = $redirect_to; if ($sendto == "admin") { $sendto = $sendto . "/orders.php"; } else { $sendto = $sendto . "/home.php"; } func_header_location($sendto); }
Reply With Quote