From 2b9195c67901c10fe87bbfc459546660eba93bca Mon Sep 17 00:00:00 2001 From: chriskl Date: Sat, 3 Jan 2004 09:32:18 +0000 Subject: [PATCH] fix require path --- libraries/lib.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/lib.inc.php b/libraries/lib.inc.php index 353f9b6c..249f3e61 100644 --- a/libraries/lib.inc.php +++ b/libraries/lib.inc.php @@ -3,7 +3,7 @@ /** * Function library read in upon startup * - * $Id: lib.inc.php,v 1.71 2003/12/17 09:11:32 chriskl Exp $ + * $Id: lib.inc.php,v 1.72 2004/01/03 09:32:18 chriskl Exp $ */ // Set error reporting level to max @@ -164,7 +164,7 @@ // Create a database wrapper class for easy manipulation of the // connection. - require_once('classes/database/' . $_type . '.php'); + require_once('./classes/database/' . $_type . '.php'); $data = new $_type($_connection->conn); // If schema is defined and database supports schemas, then set the -- 2.39.5