14
Just FYI. I face the same problem, however the crash is intermittenly occurred in my IE.
Hervé provided the following resolution in dev.xoops.org:
"If you can, try this.
Edit the file /xoops/modules/news/include/storyform.inc.php
You have the choice, you can replace one of the two following lines.
replace the line :
$sform->addElement(new XoopsFormDhtmlTextArea(_NW_THESCOOP, 'hometext', $hometext, 15, 60, 'hometext_hidden'), true);
with :
$sform->addElement(new xoopsFormTextArea (_NW_THESCOOP, 'hometext', $hometext, 15, 60), true);
or replace the line :
$sform->addElement(new XoopsFormDhtmlTextArea(_AM_EXTEXT, 'bodytext', $bodytext, 15, 60, 'bodytext_hidden'), false);
with :
$sform->addElement(new xoopsFormTextArea (_AM_EXTEXT, 'bodytext', $bodytext, 15, 60 ), false);"
I'll give it a try.