Code Duplication    Length = 3-7 lines in 2 locations

SSI.php 1 location

@@ 1840-1842 (lines=3) @@
1837
	{
1838
		echo '
1839
			<span class="birthday">' . $txt['birthdays_upcoming'] . '</span> ';
1840
		foreach ($return['calendar_birthdays'] as $member)
1841
			echo '
1842
			<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'] ? ', ' : '';
1843
		echo '
1844
			<br>';
1845
	}

Themes/default/Calendar.template.php 1 location

@@ 457-463 (lines=7) @@
454
							// Show any birthdays...
455
							if (!empty($day['birthdays']))
456
							{
457
								foreach ($day['birthdays'] as $member)
458
								{
459
									echo '
460
										<a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['name'], '</a>
461
										', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '
462
									', $member['is_last'] ? '' : '<br>';
463
								}
464
							}
465
							echo '</td>
466
						</tr>';