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

@@ 519-525 (lines=7) @@
516
							// Show any birthdays...
517
							if (!empty($day['birthdays']))
518
							{
519
								foreach ($day['birthdays'] as $member)
520
								{
521
									echo '
522
										<a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['name'], '</a>
523
										', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '
524
									', $member['is_last'] ? '' : '<br>';
525
								}
526
							}
527
							echo '</td>
528
						</tr>';