Code Duplication    Length = 3-7 lines in 2 locations

SSI.php 1 location

@@ 1838-1840 (lines=3) @@
1835
	{
1836
		echo '
1837
			<span class="birthday">' . $txt['birthdays_upcoming'] . '</span> ';
1838
		foreach ($return['calendar_birthdays'] as $member)
1839
			echo '
1840
			<a href="', $scripturl, '?action=profile;u=', $member['id'], '"><span class="fix_rtl_names">', $member['name'], '</span>', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', !$member['is_last'] ? ', ' : '';
1841
		echo '
1842
			<br>';
1843
	}

Themes/default/Calendar.template.php 1 location

@@ 741-747 (lines=7) @@
738
			// Show any birthdays...
739
			if (!empty($day['birthdays']))
740
			{
741
				foreach ($day['birthdays'] as $member)
742
				{
743
					echo '
744
							<a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['name'], '</a>
745
							', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '
746
							', $member['is_last'] ? '' : '<br>';
747
				}
748
			}
749
			echo '
750
						</td>