Code Duplication    Length = 10-10 lines in 2 locations

Sources/Load.php 2 locations

@@ 2735-2744 (lines=10) @@
2732
					);
2733
				}
2734
				// If a moderator exists for this board, add that moderator for all children too.
2735
				if (!empty($row['id_moderator']))
2736
					foreach ($boards as $id => $dummy)
2737
					{
2738
						$boards[$id]['moderators'][$row['id_moderator']] = array(
2739
							'id' => $row['id_moderator'],
2740
							'name' => $row['real_name'],
2741
							'href' => $scripturl . '?action=profile;u=' . $row['id_moderator'],
2742
							'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_moderator'] . '">' . $row['real_name'] . '</a>'
2743
						);
2744
					}
2745
2746
				// If a moderator group exists for this board, add that moderator group for all children too
2747
				if (!empty($row['id_moderator_group']))
@@ 2747-2756 (lines=10) @@
2744
					}
2745
2746
				// If a moderator group exists for this board, add that moderator group for all children too
2747
				if (!empty($row['id_moderator_group']))
2748
					foreach ($boards as $id => $dummy)
2749
					{
2750
						$boards[$id]['moderator_groups'][$row['id_moderator_group']] = array(
2751
							'id' => $row['id_moderator_group'],
2752
							'name' => $row['group_name'],
2753
							'href' => $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'],
2754
							'link' => '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'] . '">' . $row['group_name'] . '</a>'
2755
						);
2756
					}
2757
			}
2758
			$smcFunc['db_free_result']($result);
2759
		}