[pLog-svn] r5544 - plog/branches/lifetype-1.2/class/xml/rssparser/magpierss

oscar at devel.lifetype.net oscar at devel.lifetype.net
Wed Jun 13 16:58:51 EDT 2007


Author: oscar
Date: 2007-06-13 16:58:51 -0400 (Wed, 13 Jun 2007)
New Revision: 5544

Modified:
   plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_fetch.inc
   plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_parse.inc
Log:
Replaced require_once with lt_include, otherwise it doesn't work


Modified: plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_fetch.inc
===================================================================
--- plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_fetch.inc	2007-06-13 20:48:35 UTC (rev 5543)
+++ plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_fetch.inc	2007-06-13 20:58:51 UTC (rev 5544)
@@ -27,12 +27,12 @@
     define('MAGPIE_DIR', dirname(__FILE__) . DIR_SEP);
 }
 
-require_once( MAGPIE_DIR . 'rss_parse.inc' );
-require_once( MAGPIE_DIR . 'rss_cache.inc' );
+lt_include( MAGPIE_DIR . 'rss_parse.inc' );
+lt_include( MAGPIE_DIR . 'rss_cache.inc' );
 
 // for including 3rd party libraries
 define('MAGPIE_EXTLIB', MAGPIE_DIR . 'extlib' . DIR_SEP);
-require_once( MAGPIE_EXTLIB . 'Snoopy.class.inc');
+lt_include( MAGPIE_EXTLIB . 'Snoopy.class.inc');
 
 
 /* 

Modified: plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_parse.inc
===================================================================
--- plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_parse.inc	2007-06-13 20:48:35 UTC (rev 5543)
+++ plog/branches/lifetype-1.2/class/xml/rssparser/magpierss/rss_parse.inc	2007-06-13 20:58:51 UTC (rev 5544)
@@ -23,7 +23,7 @@
 define('RSS', 'RSS');
 define('ATOM', 'Atom');
 
-require_once (MAGPIE_DIR . 'rss_utils.inc');
+lt_include (MAGPIE_DIR . 'rss_utils.inc');
 
 /**
 * Hybrid parser, and object, takes RSS as a string and returns a simple object.



More information about the pLog-svn mailing list