From 09515348107d9aab7823a12d31b082a2ebb75555 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 26 Apr 2008 11:52:49 -0700 Subject: 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 --- stats.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stats.php') diff --git a/stats.php b/stats.php index 9ecbd94..267b332 100644 --- a/stats.php +++ b/stats.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(); -- cgit v1.2.3-18-g5258