Jake Bunce
Well-known member
Edit this file:
library/XenForo/ViewPublic/Helper/Message.php
Add the red code:
	
	
	
		
Tested in 1.1.0
				
			library/XenForo/ViewPublic/Helper/Message.php
Add the red code:
		Rich (BB code):
	
			if ($options['signatureKey'] && isset($message[$options['signatureKey']]))
		{
			if ($options['showSignature'])
			{
				// note: signatures are always nofollow'd by default
				$message[$options['signatureHtmlKey']] = new XenForo_BbCode_TextWrapper(
					$message[$options['signatureKey']], $parser, array('lightBox' => false, 'noFollowDefault' => false)
				);
			}
			else
			{
				$message[$options['signatureHtmlKey']] = '';
			}
		}
	Tested in 1.1.0