Code Duplication    Length = 10-10 lines in 2 locations

Sources/Load.php 2 locations

@@ 2753-2762 (lines=10) @@
2750
					);
2751
				}
2752
				// If a moderator exists for this board, add that moderator for all children too.
2753
				if (!empty($row['id_moderator']))
2754
					foreach ($boards as $id => $dummy)
2755
					{
2756
						$boards[$id]['moderators'][$row['id_moderator']] = array(
2757
							'id' => $row['id_moderator'],
2758
							'name' => $row['real_name'],
2759
							'href' => $scripturl . '?action=profile;u=' . $row['id_moderator'],
2760
							'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_moderator'] . '">' . $row['real_name'] . '</a>'
2761
						);
2762
					}
2763
2764
				// If a moderator group exists for this board, add that moderator group for all children too
2765
				if (!empty($row['id_moderator_group']))
@@ 2765-2774 (lines=10) @@
2762
					}
2763
2764
				// If a moderator group exists for this board, add that moderator group for all children too
2765
				if (!empty($row['id_moderator_group']))
2766
					foreach ($boards as $id => $dummy)
2767
					{
2768
						$boards[$id]['moderator_groups'][$row['id_moderator_group']] = array(
2769
							'id' => $row['id_moderator_group'],
2770
							'name' => $row['group_name'],
2771
							'href' => $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'],
2772
							'link' => '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $row['id_moderator_group'] . '">' . $row['group_name'] . '</a>'
2773
						);
2774
					}
2775
			}
2776
			$smcFunc['db_free_result']($result);
2777
		}