diff options
author | Arun Persaud <arun@nubati.net> | 2008-04-26 11:52:49 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-04-26 11:52:49 -0700 |
commit | 09515348107d9aab7823a12d31b082a2ebb75555 (patch) | |
tree | 2e6c01eb6fdc07390c73cb46142c5efda39f567d /register.php | |
parent | 0c5b3eeca3006f61dd326a86e8989c52694d581b (diff) | |
download | e-DoKo-09515348107d9aab7823a12d31b082a2ebb75555.tar.gz e-DoKo-09515348107d9aab7823a12d31b082a2ebb75555.tar.bz2 e-DoKo-09515348107d9aab7823a12d31b082a2ebb75555.zip |
CLEANUP: make index.php very short and move everything in separate files
created an include dir and almost everything that was in index.php is now in separate
files and gets only included in index.php... makes index.php look a lot nicer ;)
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'register.php')
-rw-r--r-- | register.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/register.php b/register.php index 1c48288..9f4cf0e 100644 --- a/register.php +++ b/register.php @@ -2,9 +2,9 @@ error_reporting(E_ALL); include_once("config.php"); -include_once("output.php"); /* html output only */ -include_once("db.php"); /* database only */ -include_once("functions.php"); /* the rest */ +include_once("./include/output.php"); /* html output only */ +include_once("./include/db.php"); /* database only */ +include_once("./include/functions.php"); /* the rest */ config_check(); |