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

modules/file/file.controller.php 1 location

@@ 705-710 (lines=6) @@
702
			}
703
			$direct_download = 'Y';
704
		}
705
		else
706
		{
707
			$path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3));
708
			$filename = $path.$random->createSecureSalt(32, 'hex');
709
			$direct_download = 'N';
710
		}
711
		// Create a directory
712
		if(!FileHandler::makeDir($path)) return new Object(-1,'msg_not_permitted_create');
713

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

@@ 1081-1086 (lines=6) @@
1078
1079
						$file_obj->direct_download = 'Y';
1080
					}
1081
					else
1082
					{
1083
						$path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3));
1084
						$filename = $path.$random->createSecureSalt(32, 'hex');
1085
						$file_obj->direct_download = 'N';
1086
					}
1087
					// Create a directory
1088
					if(!FileHandler::makeDir($path)) continue;
1089