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

modules/importer/ttimport.class.php 1 location

@@ 518-519 (lines=2) @@
515
		{
516
			$uploaded_count++;
517
			$tmp_obj = null;
518
			if($file_obj->direct_download == 'Y') $files[$name]->url = $file_obj->uploaded_filename; 
519
			else $files[$name]->url = getUrl('','module','file','act','procFileDownload','file_srl',$file_obj->file_srl,'sid',$file_obj->sid);
520
			$files[$name]->direct_download = $file_obj->direct_download;
521
			$files[$name]->source_filename = $file_obj->source_filename;
522
			return true;

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

@@ 1176-1177 (lines=2) @@
1173
							$uploaded_count++;
1174
							$tmp_obj = null;
1175
							$tmp_obj->source_filename = $file_obj->source_filename;
1176
							if($file_obj->direct_download == 'Y') $files[$file_obj->source_filename] = $file_obj->uploaded_filename;
1177
							else $files[$file_obj->source_filename] = getUrl('','module','file','act','procFileDownload','file_srl',$file_obj->file_srl,'sid',$file_obj->sid);
1178
						}
1179
					}
1180
				}