[pLog-svn] r6605 - plog/branches/lifetype-1.2/class/action/admin

mark at devel.lifetype.net mark at devel.lifetype.net
Fri Jun 20 14:56:21 EDT 2008


Author: mark
Date: 2008-06-20 14:56:20 -0400 (Fri, 20 Jun 2008)
New Revision: 6605

Modified:
   plog/branches/lifetype-1.2/class/action/admin/adminaddblogaction.class.php
Log:
Although we have properties in each DAO, but we never use it.

Modified: plog/branches/lifetype-1.2/class/action/admin/adminaddblogaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminaddblogaction.class.php	2008-06-20 18:52:18 UTC (rev 6604)
+++ plog/branches/lifetype-1.2/class/action/admin/adminaddblogaction.class.php	2008-06-20 18:56:20 UTC (rev 6605)
@@ -23,7 +23,6 @@
 
     	var $_blogName;
         var $_ownerId;
-		var $_blogProperties;
 
     	function AdminAddBlogAction( $actionInfo, $request )
         {
@@ -50,8 +49,6 @@
 	        // fetch the validated data
         	$this->_blogName = Textfilter::filterAllHTML($this->_request->getValue( "blogName" ));
             $this->_ownerId  = $this->_request->getValue( "userId" );
-                // TODO: validate this
-			$this->_blogProperties = $this->_request->getValue( "properties" );
 			
             // check that the user really exists
             $users = new Users();
@@ -67,7 +64,6 @@
             // sure that it doesn't already exists
             $blogs = new Blogs();
 			$blog = new BlogInfo( $this->_blogName, $this->_ownerId, "", "" );
-			$blog->setProperties( $this->_blogProperties );
 			
             // check to see whether we are going to save subdomain information			
             if( Subdomains::getSubdomainsEnabled()) {



More information about the pLog-svn mailing list