Code Duplication    Length = 3-4 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 706-708 (lines=3) @@
703
		echo '
704
				<th scope="col">', $txt['email'], '</th>';
705
706
	if (!empty($context['custom_pf']))
707
		foreach ($context['custom_pf'] as $column)
708
				echo '<th scope="col">', $column['label'], '</th>';
709
710
	echo '
711
				<th scope="col">', $txt['remove'], '</th>
@@ 736-739 (lines=4) @@
733
					<td><a href="mailto:' . $buddy['email'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $buddy['name'] . '"></span></a></td>';
734
735
			// Show the custom profile fields for this user.
736
			if (!empty($context['custom_pf']))
737
				foreach ($context['custom_pf'] as $key => $column)
738
					echo '
739
						<td class="lefttext">', $buddy['options'][$key], '</td>';
740
741
			echo '
742
					<td><a href="', $scripturl, '?action=profile;area=lists;sa=buddies;u=', $context['id_member'], ';remove=', $buddy['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons delete" title="', $txt['buddy_remove'], '"></span></a></td>