Your IP : 216.73.216.240
<?php
/**
* @package Data Organizer
* @copyright Copyright (C) 2010 FalsinSoft. All rights reserved.
* @license GNU/GPL
* @website http://falsinsoft-joomla.blogspot.com
* @email falsinsoft@gmail.com
*
*/
defined('_JEXEC') or die('Restricted access');
?>
<form action="index.php" method="post" name="adminForm">
<div class="col width-50">
<fieldset class="adminform">
<legend><?php echo JText::_('COM_MYRSSREADER_DETAILS'); ?></legend>
<table class="admintable">
<tr>
<td width="100" align="right" class="key">
<label for="title">
<?php echo JText::_('COM_MYRSSREADER_NAME'); ?>:
</label>
</td>
<td>
<input class="text_area" type="text" name="title" id="title" size="64" maxlength="64" value="<?php echo $this->category_details->title;?>" />
</td>
</tr>
<tr>
<td width="100" align="right" class="key">
<label for="title">
<?php echo JText::_('COM_MYRSSREADER_DESCRIPTION'); ?>:
</label>
</td>
<td>
<textarea class="text_area" cols="44" rows="5" name="description" id="description"><?php echo $this->category_details->description; ?></textarea>
</td>
</tr>
</table>
</fieldset>
</div>
<input type="hidden" name="option" value="com_myrssreader" />
<input type="hidden" name="task" value="category" />
<input type="hidden" name="id" value="<?php echo $this->category_details->id ?>" />
<?php echo JHTML::_('form.token') ?>
</form>