Code Duplication    Length = 10-10 lines in 2 locations

Sources/Load.php 2 locations

@@ 2809-2818 (lines=10) @@
2806
					);
2807
				}
2808
				// If a moderator exists for this board, add that moderator for all children too.
2809
				if (!empty($row['id_moderator']))
2810
					foreach ($boards as $id => $dummy)
2811
					{
2812
						$boards[$id]['moderators'][$row['id_moderator']] = array(
2813
							'id' => $row['id_moderator'],
2814
							'name' => $row['real_name'],
2815
							'href' => $scripturl . '?action=profile;u=' . $row['id_moderator'],
2816
							'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_moderator'] . '">' . $row['real_name'] . '</a>'
2817
						);
2818
					}
2819
2820
				// If a moderator group exists for this board, add that moderator group for all children too
2821
				if (!empty($row['id_moderator_group']))
@@ 2821-2830 (lines=10) @@
2818
					}
2819
2820
				// If a moderator group exists for this board, add that moderator group for all children too
2821
				if (!empty($row['id_moderator_group']))
2822
					foreach ($boards as $id => $dummy)
2823
					{
2824
						$boards[$id]['moderator_groups'][$row['id_moderator_group']] = array(
2825
							'id' => $row['id_moderator_group'],
2826
							'name' => $row['group_name'],
2827
							'href' => $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'],
2828
							'link' => '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'] . '">' . $row['group_name'] . '</a>'
2829
						);
2830
					}
2831
			}
2832
			$smcFunc['db_free_result']($result);
2833
		}