46
Since no good soul came to help, here is my solution (which is very welcome for critic ... though it works great for me till now)
I found 2 solutions for two cases
1. In the file that is responsible to show the data (depends on which module you need it for) find the field inwhich you have the wysiwyg (or want to make html enable from any other reason) ... replace:
$myts->makeTareaData4Show($your-field,0)
with:
$myts->undoHtmlSpecialChars($your-field,0)
2. If fields look like this:
$this->initVar("description", XOBJ_DTYPE_TXTAREA, null, false);
Add in the end of the list:
$this->initVar("dohtml", XOBJ_DTYPE_INT, 1, false);
Till now it covered my need with the wysiwyg fields replacement (see my posts above) ... hope it'll help ....