Changeset 13264
- Timestamp:
- 11/19/09 00:43:07 (2 years ago)
- Location:
- trunk/modules/boonex/sites/classes
- Files:
-
- 3 edited
-
BxSitesFormAdd.php (modified) (1 diff)
-
BxSitesFormEdit.php (modified) (1 diff)
-
BxSitesPageView.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/boonex/sites/classes/BxSitesFormAdd.php
r13000 r13264 148 148 'type' => 'textarea', 149 149 'name' => 'description', 150 'value' => isset($this->_aParam['description']) ? process_db_input($this->_aParam['description'], BX_TAGS_VALIDATE): '',150 'value' => isset($this->_aParam['description']) ? $this->_aParam['description'] : '', 151 151 'caption' => _t('_bx_sites_form_description'), 152 152 'required' => true, -
trunk/modules/boonex/sites/classes/BxSitesFormEdit.php
r12840 r13264 56 56 'name' => 'submit_form', 57 57 'value' => _t('_Submit'), 58 'colspan' => true,58 'colspan' => false, 59 59 ), 60 60 ); -
trunk/modules/boonex/sites/classes/BxSitesPageView.php
r13000 r13264 135 135 return $this->_oTemplate->parseHtmlByName('view_description.html', 136 136 array( 137 'description' => process_db_input($this->_aSite['description'], BX_TAGS_VALIDATE)137 'description' => $this->_aSite['description'] 138 138 )); 139 139 }
Note: See TracChangeset
for help on using the changeset viewer.