Code Duplication    Length = 24-25 lines in 2 locations

Themes/default/Profile.template.php 2 locations

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