Update of /cvsroot/openfirst/search
In directory sc8-pr-cvs1:/tmp/cvs-serv31180
Modified Files:
index.php
Log Message:
Replace include() with include_once() where appropriate
Index: index.php
===================================================================
RCS file: /cvsroot/openfirst/search/index.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** index.php 23 Aug 2003 20:26:11 -0000 1.4
--- index.php 23 Oct 2003 14:10:46 -0000 1.5
***************
*** 26,31 ****
*
*/
! include("../config/globals.php");
! include($header);
?>
<table>
--- 26,31 ----
*
*/
! include_once("../config/globals.php");
! include_once($header);
?>
<table>
***************
*** 212,214 ****
}
! include($footer); ?>
--- 212,214 ----
}
! include_once($footer); ?>
|