5
Peekay,
There are a few places where different code is being used to more or less do the same thing here.
If I understand you right, you need to look in Xoops Forms and formdhtmltextarea.php, there and also in the 'includes' folder you should find xoopscodes.php which more or less has the same code.
You also might want to look in the
class/module.textsanitizer.php and all the plug-in for that. Plus, the module that you are using could possibly have the same code that is used by all the examples I have given you.
But from what I can see, it looks like that $myts is finding something in the input that it doesn't know how to handle correctly. Maybe an unclosed tag or misplaced quote or something.
I have a funny feeling that
le="color: #000000"><?php lor="#000000"
Could in fact be
le="color: #000000"><?php color="#000000"
or
le="color: #000000"><?php backgroundcolor="#000000"
So I would look for that in your code somewhere.