HomeHelpTrac

Changeset 13264


Ignore:
Timestamp:
11/19/09 00:43:07 (2 years ago)
Author:
Alexey Penskikh
Message:

Ticket #1457

Location:
trunk/modules/boonex/sites/classes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/boonex/sites/classes/BxSitesFormAdd.php

    r13000 r13264  
    148148                    'type' => 'textarea', 
    149149                    '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'] : '', 
    151151                    'caption' => _t('_bx_sites_form_description'), 
    152152                    'required' => true, 
  • trunk/modules/boonex/sites/classes/BxSitesFormEdit.php

    r12840 r13264  
    5656                'name' => 'submit_form', 
    5757                'value' => _t('_Submit'), 
    58                 'colspan' => true, 
     58                'colspan' => false, 
    5959            ),             
    6060        ); 
  • trunk/modules/boonex/sites/classes/BxSitesPageView.php

    r13000 r13264  
    135135        return $this->_oTemplate->parseHtmlByName('view_description.html',  
    136136            array( 
    137                 'description' => process_db_input($this->_aSite['description'], BX_TAGS_VALIDATE) 
     137                'description' => $this->_aSite['description'] 
    138138            )); 
    139139    } 
Note: See TracChangeset for help on using the changeset viewer.