GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 13-13 lines in 2 locations

modules/document/document.controller.php 2 locations

@@ 2063-2075 (lines=13) @@
2060
			$oModuleAdminModel = getAdminModel('module');
2061
			$langs = $oModuleAdminModel->getLangCode($site_srl, $title);
2062
2063
			if(count($langs))
2064
			{
2065
				foreach($langs as $key => $val)
2066
				{
2067
					$val = htmlspecialchars($val, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);
2068
					$php_header_buff .= sprintf(
2069
						'$_titles[%d]["%s"] = "%s"; ',
2070
						$category_srl,
2071
						$key,
2072
						str_replace('"','\\"', $val)
2073
					);
2074
				}
2075
			}
2076
2077
			$langx = $oModuleAdminModel->getLangCode($site_srl, $description);
2078
@@ 2079-2091 (lines=13) @@
2076
2077
			$langx = $oModuleAdminModel->getLangCode($site_srl, $description);
2078
2079
			if(count($langx))
2080
			{
2081
				foreach($langx as $key => $val)
2082
				{
2083
					$val = htmlspecialchars($val, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);
2084
					$php_header_buff .= sprintf(
2085
						'$_descriptions[%d]["%s"] = "%s"; ',
2086
						$category_srl,
2087
						$key,
2088
						str_replace('"','\\"', $val)
2089
					);
2090
				}
2091
			}
2092
2093
			// Create attributes(Use the category_srl_list to check whether to belong to the menu's node. It seems to be tricky but fast fast and powerful;)
2094
			$attribute = sprintf(