[pLog-svn] r6526 - plog/branches/lifetype-1.2/class/action/admin
mark at devel.lifetype.net
mark at devel.lifetype.net
Mon Jun 9 04:06:31 EDT 2008
Author: mark
Date: 2008-06-09 04:06:31 -0400 (Mon, 09 Jun 2008)
New Revision: 6526
Modified:
plog/branches/lifetype-1.2/class/action/admin/adminupdateblogcategoryaction.class.php
Log:
We don't need properties since we never use it.
Modified: plog/branches/lifetype-1.2/class/action/admin/adminupdateblogcategoryaction.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/action/admin/adminupdateblogcategoryaction.class.php 2008-06-09 08:01:47 UTC (rev 6525)
+++ plog/branches/lifetype-1.2/class/action/admin/adminupdateblogcategoryaction.class.php 2008-06-09 08:06:31 UTC (rev 6526)
@@ -22,7 +22,6 @@
var $_categoryUrl;
var $_categoryId;
var $_categoryDescription;
- var $_properties;
/**
* Constructor. If nothing else, it also has to call the constructor of the parent
@@ -52,7 +51,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 BlogCategories();
@@ -70,7 +68,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