[pLog-svn] r4046 - plog/branches/lifetype-1.1.1/class/action

oscar at devel.lifetype.net oscar at devel.lifetype.net
Mon Sep 25 19:24:36 GMT 2006


Author: oscar
Date: 2006-09-25 19:24:36 +0000 (Mon, 25 Sep 2006)
New Revision: 4046

Modified:
   plog/branches/lifetype-1.1.1/class/action/resourceserveraction.class.php
Log:
Added some missing includes as reported in http://forums.lifetype.net/viewtopic.php?p=28950#28950

Modified: plog/branches/lifetype-1.1.1/class/action/resourceserveraction.class.php
===================================================================
--- plog/branches/lifetype-1.1.1/class/action/resourceserveraction.class.php	2006-09-25 19:09:49 UTC (rev 4045)
+++ plog/branches/lifetype-1.1.1/class/action/resourceserveraction.class.php	2006-09-25 19:24:36 UTC (rev 4046)
@@ -80,6 +80,7 @@
             	// check if there was a user parameter
                 if( !empty($userName) ) {
                 	// if so, check to which blogs the user belongs
+					include_once( PLOG_CLASS_PATH."class/dao/users.class.php" );
                 	$users = new Users();
                  	$userInfo = $users->getUserInfoFromUsername( $userName );
                     // if the user exists and is valid...
@@ -109,6 +110,7 @@
             }
 			
             // fetch the BlogInfo object
+			include_once( PLOG_CLASS_PATH."class/dao/blogs.class.php" );
             $blogs = new Blogs();
             if( $blogId )
                 $this->_blogInfo = $blogs->getBlogInfo( $blogId );



More information about the pLog-svn mailing list