Update of /cvsroot/openfirst/news/rss
In directory sc8-pr-cvs1:/tmp/cvs-serv29987/rss
Modified Files:
rss.php
Log Message:
Change include to include_once so that scripts may be easily included from other scripts without problems.
Index: rss.php
===================================================================
RCS file: /cvsroot/openfirst/news/rss/rss.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** rss.php 1 Oct 2003 22:53:58 -0000 1.2
--- rss.php 13 Oct 2003 17:59:51 -0000 1.3
***************
*** 27,31 ****
*/
! include("../../config/globals.php");
ob_start();
--- 27,31 ----
*/
! include_once("../../config/globals.php");
ob_start();
***************
*** 33,37 ****
// Include system RSSBuilder Class
! include("class.RSSBuilder.inc.php");
// Create the object - remember, not all attibutes are supported
--- 33,37 ----
// Include system RSSBuilder Class
! include_once("class.RSSBuilder.inc.php");
// Create the object - remember, not all attibutes are supported
|