2
Hiya,
Open the following file:
Xoops_root/class/forms/page_form.php and change the following line (roughly line 15)
$content_subtitle = new XoopsFormText( _MA_AD_EWFC_HEADLINE, 'wfc_headline', 50, 150, $this->getVar( 'wfc_headline', 'e' ) );
$content_subtitle->setDescription( _MA_AD_EWFC_HEADLINE_DSC );
$form->addElement( $content_subtitle, true );
to the following:
$content_subtitle = new XoopsFormText( _MA_AD_EWFC_HEADLINE, 'wfc_headline', 50, 150, $this->getVar( 'wfc_headline', 'e' ) );
$content_subtitle->setDescription( _MA_AD_EWFC_HEADLINE_DSC );
$form->addElement( $content_subtitle, false );
And then open:
Xoops_root/class/page.php and change the following line (roughly line 31 )
$this->initVar('wfc_headline', XOBJ_DTYPE_TXTBOX, null, true, 150);
To:
$this->initVar('wfc_headline', XOBJ_DTYPE_TXTBOX, null, false, 150);