|
From: Benjamin C. <bc...@us...> - 2002-04-11 20:16:15
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv27454
Modified Files:
include.php install.php
Log Message:
Purging INSTALL_PATH
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- include.php 9 Apr 2002 20:53:07 -0000 1.112
+++ include.php 11 Apr 2002 20:16:11 -0000 1.113
@@ -24,9 +24,6 @@
ini_set("magic_quotes_runtime", 0);
-// Where are we?
-#define ('INSTALL_PATH', dirname(__FILE__));
-
if (!@include('config.php')) {
header("Location: install.php");
exit();
Index: install.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/install.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- install.php 8 Apr 2002 17:06:50 -0000 1.24
+++ install.php 11 Apr 2002 20:16:11 -0000 1.25
@@ -23,10 +23,8 @@
// ------------------------------------------------------------------------
// $Id$
-define ('INSTALL_PATH', dirname(__FILE__));
-
// Location of smarty templates class
-define ('SMARTY_PATH','');
+define ('SMARTY_PATH', '');
// Example if smarty is installed within the phpBugTracker tree.
//define ('SMARTY_PATH','./inc/smarty/');
|