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/importer/importer.admin.controller.php 1 location

@@ 1141-1146 (lines=6) @@
1138
1139
						$file_obj->direct_download = 'Y';
1140
					}
1141
					else
1142
					{
1143
						$path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3));
1144
						$filename = $path.$random->createSecureSalt(32, 'hex');
1145
						$file_obj->direct_download = 'N';
1146
					}
1147
					// Create a directory
1148
					if(!FileHandler::makeDir($path)) continue;
1149

modules/file/file.controller.php 1 location

@@ 751-756 (lines=6) @@
748
			}
749
			$direct_download = 'Y';
750
		}
751
		else
752
		{
753
			$path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3));
754
			$filename = $path.$random->createSecureSalt(32, 'hex');
755
			$direct_download = 'N';
756
		}
757
		// Create a directory
758
		if(!FileHandler::makeDir($path)) return new BaseObject(-1,'msg_not_permitted_create');
759