Update of /cvsroot/openfirst/awards
In directory sc8-pr-cvs1:/tmp/cvs-serv27926
Modified Files:
index.php
Log Message:
Change include to include_once so that scripts may be easily included from other scripts without problems.
Index: index.php
===================================================================
RCS file: /cvsroot/openfirst/awards/index.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** index.php 23 Aug 2003 20:15:21 -0000 1.7
--- index.php 13 Oct 2003 17:51:13 -0000 1.8
***************
*** 26,31 ****
*
*/
! include("../config/globals.php");
! include($header);
// Query database for award information
--- 26,31 ----
*
*/
! include_once("../config/globals.php");
! include_once($header);
// Query database for award information
***************
*** 62,64 ****
<?php
}
! include($footer); ?>
--- 62,64 ----
<?php
}
! include_once($footer); ?>
|