|
From: Benjamin C. <bc...@us...> - 2002-01-26 16:46:56
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv16449/admin
Modified Files:
configure.php group.php os.php project.php resolution.php
severity.php status.php user.php
Log Message:
Changes for INSTALL_PATH
Index: configure.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/configure.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- configure.php 2001/11/23 05:02:41 1.3
+++ configure.php 2002/01/26 16:46:52 1.4
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function save_options() {
global $q, $HTTP_POST_VARS;
Index: group.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/group.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- group.php 2002/01/19 16:29:51 1.3
+++ group.php 2002/01/26 16:46:52 1.4
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function purge_group($groupid = 0) {
global $q;
Index: os.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/os.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- os.php 2001/12/19 13:36:29 1.19
+++ os.php 2002/01/26 16:46:52 1.20
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function do_form($osid = 0) {
global $q, $me, $_pv, $STRING;
Index: project.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/project.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- project.php 2002/01/23 14:26:07 1.29
+++ project.php 2002/01/26 16:46:52 1.30
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function save_version($versionid = 0) {
global $q, $me, $_pv, $STRING, $now, $u;
Index: resolution.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/resolution.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- resolution.php 2002/01/19 16:33:20 1.20
+++ resolution.php 2002/01/26 16:46:52 1.21
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function do_form($resolutionid = 0) {
global $q, $me, $_pv, $STRING;
Index: severity.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/severity.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- severity.php 2002/01/19 16:34:56 1.16
+++ severity.php 2002/01/26 16:46:52 1.17
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function do_form($severityid = 0) {
global $q, $me, $_pv, $STRING;
Index: status.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/status.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- status.php 2002/01/19 16:31:57 1.20
+++ status.php 2002/01/26 16:46:52 1.21
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function do_form($statusid = 0) {
global $q, $me, $_pv, $STRING;
Index: user.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/user.php,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- user.php 2002/01/19 16:21:47 1.37
+++ user.php 2002/01/26 16:46:52 1.38
@@ -22,8 +22,8 @@
// ------------------------------------------------------------------------
// $Id$
-define('INCLUDE_PATH', '../');
-include INCLUDE_PATH.'include.php';
+define('TEMPLATE_PATH', 'admin');
+include '../include.php';
function do_form($userid = 0) {
global $q, $me, $_pv, $STRING, $now, $u;
|