Code Duplication    Length = 24-25 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 1363-1387 (lines=25) @@
1360
					</h3>
1361
				</div>';
1362
1363
	if (empty($context['popular_boards']))
1364
		echo '
1365
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1366
1367
	else
1368
	{
1369
		echo '
1370
				<dl class="stats">';
1371
1372
		// Draw a bar for every board.
1373
		foreach ($context['popular_boards'] as $board)
1374
		{
1375
			echo '
1376
					<dt>', $board['link'], '</dt>
1377
					<dd>
1378
						<div class="profile_pie" style="background-position: -', ((int) ($board['posts_percent'] / 5) * 20), 'px 0;" title="', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '">
1379
							', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '
1380
						</div>
1381
						', empty($context['hide_num_posts']) ? $board['posts'] : '', '
1382
					</dd>';
1383
		}
1384
1385
		echo '
1386
				</dl>';
1387
	}
1388
	echo '
1389
			</div><!-- .half_content -->
1390
			<div class="half_content">
@@ 1397-1420 (lines=24) @@
1394
					</h3>
1395
				</div>';
1396
1397
	if (empty($context['board_activity']))
1398
		echo '
1399
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1400
	else
1401
	{
1402
		echo '
1403
				<dl class="stats">';
1404
1405
		// Draw a bar for every board.
1406
		foreach ($context['board_activity'] as $activity)
1407
		{
1408
			echo '
1409
					<dt>', $activity['link'], '</dt>
1410
					<dd>
1411
						<div class="profile_pie" style="background-position: -', ((int) ($activity['percent'] / 5) * 20), 'px 0;" title="', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '">
1412
							', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '
1413
						</div>
1414
						', $activity['percent'], '%
1415
					</dd>';
1416
		}
1417
1418
		echo '
1419
				</dl>';
1420
	}
1421
	echo '
1422
			</div><!-- .half_content -->
1423
		</div><!-- .flow_hidden -->';