We don't allow images in signatures, and for us, a greamlin is also an image, which we don't allow.
If you also want to disallow smileys in signatures, find in /libs/ubbthreads.inc.php
if ($smiley) ) {
$smiley = str_replace( '&', '&', $smiley );replace that first line with
if (($smiley) and ( $type != "sig" )) {it's around line 981.