Code Duplication    Length = 24-25 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 1324-1348 (lines=25) @@
1321
					</h3>
1322
				</div>';
1323
1324
	if (empty($context['popular_boards']))
1325
		echo '
1326
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1327
1328
	else
1329
	{
1330
		echo '
1331
				<dl class="stats">';
1332
1333
		// Draw a bar for every board.
1334
		foreach ($context['popular_boards'] as $board)
1335
		{
1336
			echo '
1337
					<dt>', $board['link'], '</dt>
1338
					<dd>
1339
						<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']), '">
1340
							', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '
1341
						</div>
1342
						', empty($context['hide_num_posts']) ? $board['posts'] : '', '
1343
					</dd>';
1344
		}
1345
1346
		echo '
1347
				</dl>';
1348
	}
1349
	echo '
1350
			</div><!-- .half_content -->
1351
			<div class="half_content">
@@ 1358-1381 (lines=24) @@
1355
					</h3>
1356
				</div>';
1357
1358
	if (empty($context['board_activity']))
1359
		echo '
1360
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1361
	else
1362
	{
1363
		echo '
1364
				<dl class="stats">';
1365
1366
		// Draw a bar for every board.
1367
		foreach ($context['board_activity'] as $activity)
1368
		{
1369
			echo '
1370
					<dt>', $activity['link'], '</dt>
1371
					<dd>
1372
						<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']), '">
1373
							', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '
1374
						</div>
1375
						', $activity['percent'], '%
1376
					</dd>';
1377
		}
1378
1379
		echo '
1380
				</dl>';
1381
	}
1382
	echo '
1383
			</div><!-- .half_content -->
1384
		</div><!-- .flow_hidden -->';