4
That is odd
Have you edited any of the module code / templates etc...?
If so, you may have inadvertently changed something to get this result.
It must have something to do with the way the $content variable contents are rendered on the screen.
There are these line in tinycontent's index.php:
ob_start();
include($includeContent);
$content = ob_get_contents();
ob_end_clean();
//$content = include($includeContent);
somehow, the problem probably comes from there. You could try uncommenting the //$content = incl... part and see if that helps,
sorry I can't help more,
good luck!