Code Duplication    Length = 3-6 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 422-427 (lines=6) @@
419
	}
420
421
	// Show the users signature.
422
	if ($context['signature_enabled'] && !empty($context['member']['signature']))
423
		echo '
424
				<div class="signature">
425
					<h5>', $txt['signature'], ':</h5>
426
					', $context['member']['signature'], '
427
				</div>';
428
429
	// Are there any custom profile fields for below the signature?
430
	if (!empty($context['print_custom_fields']['below_signature']))
@@ 915-917 (lines=3) @@
912
					<a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip'], ';u=', $context['member']['id'], '">', $context['last_ip'], '</a>';
913
914
	// Second address detected?
915
	if (!empty($context['last_ip2']))
916
		echo '
917
					, <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip2'], ';u=', $context['member']['id'], '">', $context['last_ip2'], '</a>';
918
919
	echo '
920
				</dd>';