|
From: Benjamin C. <bc...@us...> - 2001-08-07 13:50:10
|
Update of /cvsroot/phpbt/phpbt/admin
In directory usw-pr-cvs1:/tmp/cvs-serv14990/admin
Modified Files:
component.php os.php project.php resolution.php status.php
user.php version.php
Log Message:
Move session start code to include.php
Index: component.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/component.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- component.php 2001/07/21 02:49:55 1.4
+++ component.php 2001/08/07 13:50:07 1.5
@@ -2,10 +2,6 @@
include '../include.php';
-page_open(array('sess' => 'usess', 'auth' => 'uauth', 'perm' => 'uperm'));
-
-$u = $auth->auth['uid'];
-
function do_form($componentid = 0) {
global $q, $me, $projectid, $name, $description, $owner, $active, $u, $STRING;
Index: os.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/os.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- os.php 2001/07/21 02:49:55 1.4
+++ os.php 2001/08/07 13:50:07 1.5
@@ -4,8 +4,6 @@
include '../include.php';
-page_open(array('sess' => 'usess', 'auth' => 'uauth', 'perm' => 'uperm'));
-
function do_form($osid = 0) {
global $q, $me, $fname, $fregex, $fsortorder, $STRING;
Index: project.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/project.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- project.php 2001/07/21 02:49:55 1.4
+++ project.php 2001/08/07 13:50:07 1.5
@@ -2,10 +2,6 @@
include '../include.php';
-page_open(array('sess' => 'usess', 'auth' => 'uauth', 'perm' => 'uperm'));
-
-$u = $auth->auth['uid'];
-
function do_form($projectid = 0) {
global $q, $me, $name, $description, $active, $version, $u, $STRING;
Index: resolution.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/resolution.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- resolution.php 2001/07/21 02:49:55 1.5
+++ resolution.php 2001/08/07 13:50:07 1.6
@@ -4,8 +4,6 @@
include '../include.php';
-page_open(array('sess' => 'usess', 'auth' => 'uauth', 'perm' => 'uperm'));
-
function do_form($resolutionid = 0) {
global $q, $me, $fname, $fdescription, $fsortorder, $STRING;
Index: status.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/status.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- status.php 2001/07/21 02:49:55 1.5
+++ status.php 2001/08/07 13:50:07 1.6
@@ -4,8 +4,6 @@
include '../include.php';
-page_open(array('sess' => 'usess', 'auth' => 'uauth', 'perm' => 'uperm'));
-
function do_form($statusid = 0) {
global $q, $me, $fname, $fdescription, $fsortorder, $STRING;
Index: user.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/user.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- user.php 2001/07/31 16:49:32 1.10
+++ user.php 2001/08/07 13:50:07 1.11
@@ -2,8 +2,6 @@
include '../include.php';
-page_open(array('sess' => 'usess', 'auth' => 'uauth', 'perm' => 'uperm'));
-
function do_form($userid = 0) {
global $q, $me, $ffirstname, $flastname, $femail, $fpassword, $usertype, $STRING, $now;
Index: version.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/admin/version.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- version.php 2001/07/21 02:49:55 1.5
+++ version.php 2001/08/07 13:50:07 1.6
@@ -2,9 +2,6 @@
include '../include.php';
-page_open(array('sess' => 'usess', 'auth' => 'uauth', 'perm' => 'uperm'));
-$u = $auth->auth['uid'];
-
function do_form($versionid = 0) {
global $q, $me, $projectid, $version, $active, $STRING, $now, $u;
|