Code Duplication    Length = 5-5 lines in 2 locations

Sources/Memberlist.php 1 location

@@ 635-639 (lines=5) @@
632
			foreach ($context['custom_profile_fields']['columns'] as $key => $column)
633
			{
634
				// Don't show anything if there isn't anything to show.
635
				if (!isset($context['members'][$member]['options'][$key]))
636
				{
637
					$context['members'][$member]['options'][$key] = '';
638
					continue;
639
				}
640
641
				$currentKey = 0;
642
				if (!empty($column['options']))

Sources/Profile-Modify.php 1 location

@@ 1514-1518 (lines=5) @@
1511
			foreach ($context['custom_pf'] as $key => $column)
1512
			{
1513
				// Don't show anything if there isn't anything to show.
1514
				if (!isset($context['buddies'][$buddy]['options'][$key]))
1515
				{
1516
					$context['buddies'][$buddy]['options'][$key] = '';
1517
					continue;
1518
				}
1519
1520
				if ($column['bbc'] && !empty($context['buddies'][$buddy]['options'][$key]))
1521
					$context['buddies'][$buddy]['options'][$key] = strip_tags(parse_bbc($context['buddies'][$buddy]['options'][$key]));