Code Duplication    Length = 3-6 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 451-456 (lines=6) @@
448
	}
449
450
	// Show the users signature.
451
	if ($context['signature_enabled'] && !empty($context['member']['signature']))
452
		echo '
453
			<div class="signature">
454
				<h5>', $txt['signature'], ':</h5>
455
				', $context['member']['signature'], '
456
			</div>';
457
458
	// Are there any custom profile fields for below the signature?
459
	if (!empty($context['print_custom_fields']['below_signature']))
@@ 976-978 (lines=3) @@
973
					<a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip'], ';u=', $context['member']['id'], '">', $context['last_ip'], '</a>';
974
975
	// Second address detected?
976
	if (!empty($context['last_ip2']))
977
		echo '
978
					, <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip2'], ';u=', $context['member']['id'], '">', $context['last_ip2'], '</a>';
979
980
	echo '
981
				</dd>';