3
n/m, I just hacked module.textsanitiser.php to process the smilies before the links
ie change this:
$text =& $this->makeClickable($text);
if ($smiley != 0) {
// process smiley
$text =& $this->smiley($text);
}
to this:
if ($smiley != 0) {
// process smiley
$text =& $this->smiley($text);
}
$text =& $this->makeClickable($text);