Hi
When editing a site TinyMce editor seems limited
is there a way for it to have more functions like the TinyMce editor for events?
Many thanks
Hi
|
Take a look at /templates/base/scripts/BxBaseEditorTinyMCE.php
Standard view Vs Full view ....... plugins & toolbars My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
Thanks |
/modules/boonex/sites/BxSitesFormAdd.php:138 Change that 1 to a 2 'description' => array(
'type' => 'textarea',
'name' => 'description',
'value' => isset($this->_aParam['description']) ? $this->_aParam['description'] : '',
'caption' => _t('_bx_sites_form_description'),
'required' => true,
'html' => 1,
'checker' => array (
'func' => 'length',
'params' => array(1,64000),
'error' => _t('_bx_sites_form_field_err'),
),
'db' => array(
'pass' => 'XssHtml'
)
),
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
Brilliant |