Code Duplication    Length = 24-25 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 1341-1365 (lines=25) @@
1338
					</h3>
1339
				</div>';
1340
1341
	if (empty($context['popular_boards']))
1342
		echo '
1343
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1344
1345
	else
1346
	{
1347
		echo '
1348
				<dl class="stats">';
1349
1350
		// Draw a bar for every board.
1351
		foreach ($context['popular_boards'] as $board)
1352
		{
1353
			echo '
1354
					<dt>', $board['link'], '</dt>
1355
					<dd>
1356
						<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']), '">
1357
							', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '
1358
						</div>
1359
						', empty($context['hide_num_posts']) ? $board['posts'] : '', '
1360
					</dd>';
1361
		}
1362
1363
		echo '
1364
				</dl>';
1365
	}
1366
	echo '
1367
			</div><!-- .half_content -->
1368
			<div class="half_content">
@@ 1375-1398 (lines=24) @@
1372
					</h3>
1373
				</div>';
1374
1375
	if (empty($context['board_activity']))
1376
		echo '
1377
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1378
	else
1379
	{
1380
		echo '
1381
				<dl class="stats">';
1382
1383
		// Draw a bar for every board.
1384
		foreach ($context['board_activity'] as $activity)
1385
		{
1386
			echo '
1387
					<dt>', $activity['link'], '</dt>
1388
					<dd>
1389
						<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']), '">
1390
							', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '
1391
						</div>
1392
						', $activity['percent'], '%
1393
					</dd>';
1394
		}
1395
1396
		echo '
1397
				</dl>';
1398
	}
1399
	echo '
1400
			</div><!-- .half_content -->
1401
		</div><!-- .flow_hidden -->';