[pLog-svn] r4958 - in plugins/branches/lifetype-1.2: . unported
jondaley at devel.lifetype.net
jondaley at devel.lifetype.net
Sat Mar 3 17:25:48 EST 2007
Author: jondaley
Date: 2007-03-03 17:25:48 -0500 (Sat, 03 Mar 2007)
New Revision: 4958
Modified:
plugins/branches/lifetype-1.2/atom.php
plugins/branches/lifetype-1.2/mobile.php
plugins/branches/lifetype-1.2/unported/karma.php
plugins/branches/lifetype-1.2/unported/moblog.php
plugins/branches/lifetype-1.2/unported/moblogbatch.php
Log:
we can't use lt_include in some places
Modified: plugins/branches/lifetype-1.2/atom.php
===================================================================
--- plugins/branches/lifetype-1.2/atom.php 2007-03-03 22:22:09 UTC (rev 4957)
+++ plugins/branches/lifetype-1.2/atom.php 2007-03-03 22:25:48 UTC (rev 4958)
@@ -8,7 +8,7 @@
define( "PLOG_CLASS_PATH", dirname(__FILE__)."/");
}
- lt_include( PLOG_CLASS_PATH."class/bootstrap.php" );
+ include_once( PLOG_CLASS_PATH."class/bootstrap.php" );
lt_include( PLOG_CLASS_PATH."plugins/atom/class/xml/atom/atomserver.class.php" );
lt_include( PLOG_CLASS_PATH."plugins/atom/class/logger/atomlogger.class.php" );
Modified: plugins/branches/lifetype-1.2/mobile.php
===================================================================
--- plugins/branches/lifetype-1.2/mobile.php 2007-03-03 22:22:09 UTC (rev 4957)
+++ plugins/branches/lifetype-1.2/mobile.php 2007-03-03 22:25:48 UTC (rev 4958)
@@ -9,6 +9,7 @@
define( "MOBILE_PLOG_CLASS_PATH", PLOG_CLASS_PATH."plugins/mobile/" );
}
+ include_once( PLOG_CLASS_PATH."class/bootstrap.php" );
lt_include( MOBILE_PLOG_CLASS_PATH."class/controller/mobilecontroller.class.php" );
lt_include( PLOG_CLASS_PATH."class/net/http/httpvars.class.php" );
Modified: plugins/branches/lifetype-1.2/unported/karma.php
===================================================================
--- plugins/branches/lifetype-1.2/unported/karma.php 2007-03-03 22:22:09 UTC (rev 4957)
+++ plugins/branches/lifetype-1.2/unported/karma.php 2007-03-03 22:25:48 UTC (rev 4958)
@@ -10,5 +10,5 @@
* increasing/decreasing the karma scores of each one of them.
*/
- lt_include( PLOG_CLASS_PATH."index.php" );
+ include( PLOG_CLASS_PATH."index.php" );
?>
Modified: plugins/branches/lifetype-1.2/unported/moblog.php
===================================================================
--- plugins/branches/lifetype-1.2/unported/moblog.php 2007-03-03 22:22:09 UTC (rev 4957)
+++ plugins/branches/lifetype-1.2/unported/moblog.php 2007-03-03 22:25:48 UTC (rev 4958)
@@ -12,6 +12,7 @@
define( "MOBLOG_DEBUG", true );
// bring in some code that we need
+ include_once( PLOG_CLASS_PATH."class/bootstrap.php" );
lt_include( PLOG_CLASS_PATH."class/dao/blogs.class.php" );
lt_include( PLOG_CLASS_PATH."class/dao/users.class.php" );
lt_include( PLOG_CLASS_PATH."class/file/file.class.php" );
Modified: plugins/branches/lifetype-1.2/unported/moblogbatch.php
===================================================================
--- plugins/branches/lifetype-1.2/unported/moblogbatch.php 2007-03-03 22:22:09 UTC (rev 4957)
+++ plugins/branches/lifetype-1.2/unported/moblogbatch.php 2007-03-03 22:25:48 UTC (rev 4958)
@@ -6,6 +6,7 @@
}
// bring in some code that we need
+ include_once( PLOG_CLASS_PATH."class/bootstrap.php" );
lt_include( PLOG_CLASS_PATH."plugins/moblog/class/PEAR/Net/POP3.php" );
lt_include( PLOG_CLASS_PATH."plugins/moblog/class/PEAR/HTTP/Request.php");
lt_include( PLOG_CLASS_PATH."class/net/baserequestgenerator.class.php" );
More information about the pLog-svn
mailing list