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

mark at devel.lifetype.net mark at devel.lifetype.net
Mon Jun 9 01:59:53 EDT 2008


Author: mark
Date: 2008-06-09 01:59:52 -0400 (Mon, 09 Jun 2008)
New Revision: 6520

Modified:
   plog/branches/lifetype-1.2/class/action/admin/adminupdateglobalarticlecategoryaction.class.php
Log:
We don't need to update properties here, because we never use it.

Modified: plog/branches/lifetype-1.2/class/action/admin/adminupdateglobalarticlecategoryaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminupdateglobalarticlecategoryaction.class.php	2008-06-09 05:57:38 UTC (rev 6519)
+++ plog/branches/lifetype-1.2/class/action/admin/adminupdateglobalarticlecategoryaction.class.php	2008-06-09 05:59:52 UTC (rev 6520)
@@ -26,7 +26,6 @@
         var $_categoryUrl;
         var $_categoryId;
 		var $_categoryDescription;     
-		var $_properties;
 
     	/**
          * Constructor. If nothing else, it also has to call the constructor of the parent
@@ -56,7 +55,6 @@
         	$this->_categoryName = $this->_request->getValue( "categoryName" );
             $this->_categoryId   = $this->_request->getValue( "categoryId" );
 			$this->_categoryDescription = $this->_request->getValue( "categoryDescription" );
-        	$this->_properties = Array();		
 		
         	// fetch the category we're trying to update
             $categories = new GlobalArticleCategories();
@@ -74,8 +72,6 @@
 
             // update the fields
             $category->setName( $this->_categoryName );
-         
-			$category->setProperties( $this->_properties );
 			$category->setDescription( $this->_categoryDescription );
 			
 			// this is view we're going to use to show our messages



More information about the pLog-svn mailing list