[pLog-svn] r3203 - plog/trunk/class/dao

mark at devel.lifetype.net mark at devel.lifetype.net
Fri Apr 7 17:54:49 GMT 2006


Author: mark
Date: 2006-04-07 17:54:48 +0000 (Fri, 07 Apr 2006)
New Revision: 3203

Modified:
   plog/trunk/class/dao/blogs.class.php
Log:
It seems we forget put the create date and update date in blogInfo Object.

Modified: plog/trunk/class/dao/blogs.class.php
===================================================================
--- plog/trunk/class/dao/blogs.class.php	2006-04-07 08:38:23 UTC (rev 3202)
+++ plog/trunk/class/dao/blogs.class.php	2006-04-07 17:54:48 UTC (rev 3203)
@@ -357,8 +357,11 @@
 			// mangled blog
 			$blogInfo->setMangledBlogName( $row['mangled_blog'] );
 			$blogInfo->setCustomDomain( $row['custom_domain'] );
-                // show in summary or not
+            // show in summary or not
 			$blogInfo->setShowInSummary( $row['show_in_summary'] );
+			// create date and update date
+			$blogInfo->setCreateDate( $row['create_date'] );
+			$blogInfo->setUpdateDate( $row['last_update_date'] );
 
             return $blogInfo;
         }



More information about the pLog-svn mailing list