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

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

@@ 37-41 (lines=5) @@
34
		$site_srl = Context::get('site_srl');
35
		$site_module_info = Context::get('site_module_info');
36
37
		if(!$site_srl)
38
		{
39
			if($logged_info->is_admin == 'Y' && !$site_keyword) $site_srl = 0;
40
			else $site_srl = (int)$site_module_info->site_srl;
41
		}
42
43
		// process for unlinked modules
44
		if($site_srl == 0)

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

@@ 751-752 (lines=2) @@
748
749
		if(!$site_srl)
750
		{
751
			if($logged_info->is_admin == 'Y' && !$site_keyword && !$vid) $args->site_srl = 0;
752
			else $args->site_srl = (int)$site_module_info->site_srl;
753
		}
754
		else $args->site_srl = $site_srl;
755