[Openfirst-cvscommit] logger rawdata.php,1.2,1.3 reset.php,1.1.1.1,1.2 track.php,1.2,1.3 viewLog.php
Brought to you by:
xtimg
|
From: <xt...@us...> - 2003-05-05 11:19:29
|
Update of /cvsroot/openfirst/logger
In directory sc8-pr-cvs1:/tmp/cvs-serv14593
Modified Files:
rawdata.php reset.php track.php viewLog.php
Log Message:
Fix headers and footers to use proper values.
Index: rawdata.php
===================================================================
RCS file: /cvsroot/openfirst/logger/rawdata.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** rawdata.php 21 Apr 2003 20:26:54 -0000 1.2
--- rawdata.php 5 May 2003 11:19:24 -0000 1.3
***************
*** 1,5 ****
<?php
include("../config/globals.php");
! include("../config/headers.php");
mysql_select_db("openFIRST",$sqlconnection);
--- 1,5 ----
<?php
include("../config/globals.php");
! include("$header");
mysql_select_db("openFIRST",$sqlconnection);
***************
*** 63,65 ****
</table>
<p>
! <?php include("../config/footers.php"); ?>
--- 63,65 ----
</table>
<p>
! <?php include("$footer"); ?>
Index: reset.php
===================================================================
RCS file: /cvsroot/openfirst/logger/reset.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** reset.php 21 Apr 2003 15:30:53 -0000 1.1.1.1
--- reset.php 5 May 2003 11:19:24 -0000 1.2
***************
*** 1,5 ****
<?php
include("../config/globals.php");
! include("../config/headers.php");
mysql_select_db("openFIRST",$sqlconnection);
--- 1,5 ----
<?php
include("../config/globals.php");
! include("$header");
mysql_select_db("openFIRST",$sqlconnection);
***************
*** 26,28 ****
</p>
</form></p>
! <?php include("../config/footers.php"); ?>
\ No newline at end of file
--- 26,28 ----
</p>
</form></p>
! <?php include("$footer"); ?>
\ No newline at end of file
Index: track.php
===================================================================
RCS file: /cvsroot/openfirst/logger/track.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** track.php 21 Apr 2003 20:26:54 -0000 1.2
--- track.php 5 May 2003 11:19:24 -0000 1.3
***************
*** 1,5 ****
<?php
include("../config/globals.php");
! include("../config/headers.php");
mysql_select_db("openFIRST",$sqlconnection);
--- 1,5 ----
<?php
include("../config/globals.php");
! include("$header");
mysql_select_db("openFIRST",$sqlconnection);
***************
*** 52,54 ****
</table>
<p>
! <?php include("../config/footers.php"); ?>
--- 52,54 ----
</table>
<p>
! <?php include("$footer"); ?>
Index: viewLog.php
===================================================================
RCS file: /cvsroot/openfirst/logger/viewLog.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** viewLog.php 21 Apr 2003 20:26:54 -0000 1.2
--- viewLog.php 5 May 2003 11:19:24 -0000 1.3
***************
*** 1,5 ****
<?php
include("../config/globals.php");
! include("../config/headers.php");
mysql_select_db("openFIRST",$sqlconnection);
--- 1,5 ----
<?php
include("../config/globals.php");
! include("$header");
mysql_select_db("openFIRST",$sqlconnection);
***************
*** 56,58 ****
</table>
<p>
! <?php include("../config/footers.php"); ?>
--- 56,58 ----
</table>
<p>
! <?php include("$footer"); ?>
|