8
Sorry... I've been going just a little too fast...
Inside ./admin/index.php. First insert
include_once XOOPS_ROOT_PATH.'/class/xoopsformloader.php';
around line 33.
Then around line 368 change:
echo ""; xoopsCodeTarea("description",60,8); xoopsSmilies("description"); echo " | n";
to:
echo ""; $tarea = new XoopsFormTextArea('Description', 'description', 'Enter your description here', 8, 60); echo $tarea->render(); echo " | n";
You'll need to something similar in the modPoint() function around line 550.
Sorry for the confusion. By the way, I did load the module this time and actually try the changes and they appear to work.