Update of /cvsroot/openfirst/logger
In directory sc8-pr-cvs1:/tmp/cvs-serv27119/logger
Modified Files:
rawdata.php track.php
Log Message:
Fixed admin login bug
Index: rawdata.php
===================================================================
RCS file: /cvsroot/openfirst/logger/rawdata.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** rawdata.php 15 Oct 2003 01:02:54 -0000 1.8
--- rawdata.php 23 Oct 2003 22:10:55 -0000 1.9
***************
*** 27,30 ****
--- 27,32 ----
*/
+ include_once("../config/globals.php");
+
if(!isset($user->user)||$user->membertype!="administrator"){
header("Location: stats.php");
***************
*** 32,36 ****
}
- include_once("../config/globals.php");
include_once("$header");
--- 34,37 ----
Index: track.php
===================================================================
RCS file: /cvsroot/openfirst/logger/track.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** track.php 15 Oct 2003 01:02:54 -0000 1.13
--- track.php 23 Oct 2003 22:10:55 -0000 1.14
***************
*** 27,36 ****
*/
if(!isset($user->user)||$user->membertype!="administrator"){
header("Location: stats.php");
exit;
}
!
! include_once("../config/globals.php");
include_once("$header");
--- 27,36 ----
*/
+ include_once("../config/globals.php");
if(!isset($user->user)||$user->membertype!="administrator"){
header("Location: stats.php");
exit;
}
!
include_once("$header");
|