Code Duplication    Length = 24-25 lines in 2 locations

Themes/default/Profile.template.php 2 locations

@@ 1276-1300 (lines=25) @@
1273
					</h3>
1274
				</div>';
1275
1276
	if (empty($context['popular_boards']))
1277
		echo '
1278
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1279
1280
	else
1281
	{
1282
		echo '
1283
				<dl class="stats">';
1284
1285
		// Draw a bar for every board.
1286
		foreach ($context['popular_boards'] as $board)
1287
		{
1288
			echo '
1289
					<dt>', $board['link'], '</dt>
1290
					<dd>
1291
						<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']), '">
1292
							', sprintf($txt['statPanel_topBoards_memberposts'], $board['posts'], $board['total_posts_member'], $board['posts_percent']), '
1293
						</div>
1294
						', empty($context['hide_num_posts']) ? $board['posts'] : '', '
1295
					</dd>';
1296
		}
1297
1298
		echo '
1299
				</dl>';
1300
	}
1301
	echo '
1302
			</div>';
1303
	echo '
@@ 1311-1334 (lines=24) @@
1308
					</h3>
1309
				</div>';
1310
1311
	if (empty($context['board_activity']))
1312
		echo '
1313
				<p class="centertext padding">', $txt['statPanel_noPosts'], '</p>';
1314
	else
1315
	{
1316
		echo '
1317
				<dl class="stats">';
1318
1319
		// Draw a bar for every board.
1320
		foreach ($context['board_activity'] as $activity)
1321
		{
1322
			echo '
1323
					<dt>', $activity['link'], '</dt>
1324
					<dd>
1325
						<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']), '">
1326
							', sprintf($txt['statPanel_topBoards_posts'], $activity['posts'], $activity['total_posts'], $activity['posts_percent']), '
1327
						</div>
1328
						', $activity['percent'], '%
1329
					</dd>';
1330
		}
1331
1332
		echo '
1333
				</dl>';
1334
	}
1335
	echo '
1336
			</div>
1337
		</div>';