Code Duplication    Length = 24-25 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 1355-1379 (lines=25) @@
1352
					</h3>
1353
				</div>';
1354
1355
	if (empty($context['popular_boards']))
1356
		echo '
1357
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1358
1359
	else
1360
	{
1361
		echo '
1362
				<dl class="stats">';
1363
1364
		// Draw a bar for every board.
1365
		foreach ($context['popular_boards'] as $board)
1366
		{
1367
			echo '
1368
					<dt>', $board['link'], '</dt>
1369
					<dd>
1370
						<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']), '">
1371
							', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '
1372
						</div>
1373
						', empty($context['hide_num_posts']) ? $board['posts'] : '', '
1374
					</dd>';
1375
		}
1376
1377
		echo '
1378
				</dl>';
1379
	}
1380
	echo '
1381
			</div><!-- .half_content -->
1382
			<div class="half_content">
@@ 1389-1412 (lines=24) @@
1386
					</h3>
1387
				</div>';
1388
1389
	if (empty($context['board_activity']))
1390
		echo '
1391
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1392
	else
1393
	{
1394
		echo '
1395
				<dl class="stats">';
1396
1397
		// Draw a bar for every board.
1398
		foreach ($context['board_activity'] as $activity)
1399
		{
1400
			echo '
1401
					<dt>', $activity['link'], '</dt>
1402
					<dd>
1403
						<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']), '">
1404
							', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '
1405
						</div>
1406
						', $activity['percent'], '%
1407
					</dd>';
1408
		}
1409
1410
		echo '
1411
				</dl>';
1412
	}
1413
	echo '
1414
			</div><!-- .half_content -->
1415
		</div><!-- .flow_hidden -->';