Code Duplication    Length = 3-7 lines in 2 locations

SSI.php 1 location

@@ 1881-1883 (lines=3) @@
1878
	{
1879
		echo '
1880
			<span class="birthday">' . $txt['birthdays_upcoming'] . '</span> ';
1881
		foreach ($return['calendar_birthdays'] as $member)
1882
			echo '
1883
			<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'] ? ', ' : '';
1884
		echo '
1885
			<br>';
1886
	}

Themes/default/Calendar.template.php 1 location

@@ 708-714 (lines=7) @@
705
			// Show any birthdays...
706
			if (!empty($day['birthdays']))
707
			{
708
				foreach ($day['birthdays'] as $member)
709
					echo '
710
							<a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['name'], '</a>
711
							', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '
712
							', $member['is_last'] ? '' : '<br>';
713
			}
714
			echo '
715
						</td>
716
					</tr>';
717
		}