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 = 6-8 lines in 2 locations

modules/menu/menu.admin.controller.php 1 location

@@ 1616-1623 (lines=8) @@
1613
		$args->menu_srl = $requestArgs->menu_srl;
1614
		$args->name = sprintf('{$lang->menu_gnb_sub[\'%s\']}', $menuName);
1615
		//if now page is https...
1616
		if(strpos($url, 'https') !== false)
1617
		{
1618
			$args->url = str_replace('https'.substr($dbInfo->default_url, 4), '', $url);
1619
		}
1620
		else
1621
		{
1622
			$args->url = str_replace($dbInfo->default_url, '', $url);
1623
		}
1624
		$args->open_window = 'N';
1625
		$args->expand = 'N';
1626
		$args->normal_btn = '';

modules/document/document.model.php 1 location

@@ 1480-1485 (lines=6) @@
1477
					$query_id = 'document.getDocumentListWithinExtraVars';
1478
					break;
1479
				default :
1480
					if(strpos($search_target,'extra_vars')!==false) {
1481
						$args->var_idx = substr($search_target, strlen('extra_vars'));
1482
						$args->var_value = str_replace(' ','%',$search_keyword);
1483
						$args->sort_index = 'documents.'.$args->sort_index;
1484
						$query_id = 'document.getDocumentListWithExtraVars';
1485
					}
1486
					break;
1487
			}
1488
		}