View Single Post
  #8  
Old 22nd April 2009, 11:01
raefor's Avatar
raefor raefor is offline
Senior Member
 
Join Date: Mar 2008
United States
Posts: 90
Default
Quote:
Originally Posted by thereal View Post
THANKS!!!
How can I make so that the login box only is visable when you're not logged in, like tbdev?
replace On Index.php And Account-Signup.php

PHP Code:
require_once("backend/functions.php");
dbconn(); 

with

PHP Code:
require_once("backend/functions.php");
$site_config['RIGHTNAV'] = false;
$site_config['LEFTNAV'] = false;
dbconn(); 

Last edited by raefor; 22nd April 2009 at 17:12.
Reply With Quote