[Openfirst-cvscommit] feedback index.php,1.11,1.12
Brought to you by:
xtimg
From: <xt...@us...> - 2003-10-13 17:53:25
|
Update of /cvsroot/openfirst/feedback In directory sc8-pr-cvs1:/tmp/cvs-serv28643 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/feedback/index.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** index.php 28 Sep 2003 13:34:35 -0000 1.11 --- index.php 13 Oct 2003 17:53:21 -0000 1.12 *************** *** 26,31 **** * */ ! include("../config/globals.php"); ! include($header); echo("<h1>Give Feedback</h1>"); --- 26,31 ---- * */ ! include_once("../config/globals.php"); ! include_once($header); echo("<h1>Give Feedback</h1>"); *************** *** 112,115 **** echo("Before you can use this, someone must first set up users able to be e-mailed by modifying the database."); } ! include($footer); ?> --- 112,115 ---- echo("Before you can use this, someone must first set up users able to be e-mailed by modifying the database."); } ! include_once($footer); ?> |