From 7a03046f14f5b0f6d7322961a19de8381b38bacc Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 19 Aug 2007 15:23:40 +0000 Subject: [PATCH] Fixing the include path for docs/tools/create_schema.php * docs/tools/create_schema.php: Hard-coding our include path --- docs/tools/create_schema.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools/create_schema.php b/docs/tools/create_schema.php index 9237c56..2eec01b 100644 --- a/docs/tools/create_schema.php +++ b/docs/tools/create_schema.php @@ -3,8 +3,8 @@ // creates schema file output // $Id$ -ini_set('include_path', ini_get('include_path') . ':' . dirname(dirname(getcwd()))); -require_once('ISSO/Register.php'); +ini_set('include_path', ini_get('include_path') . ':/Server/htdocs'); +require_once('ISSO/App.php'); $db = BSApp::LoadModule('DbMySQL'); $input = BSApp::LoadModule('Input'); -- 2.22.5