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

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

@@ 901-905 (lines=5) @@
898
				$files = array();
899
			}
900
			// If <attaches is, start importing attachments
901
			if(substr($str,0,9) == '<attaches')
902
			{
903
				$obj->uploaded_count = $this->importAttaches($fp, $module_srl, $obj->comment_srl, $files);
904
				continue;
905
			}
906
907
			if($started) $buff .= $str;
908
			// If </comment> is, insert to the DB

modules/importer/ttimport.class.php 1 location

@@ 120-124 (lines=5) @@
117
					continue;
118
					// Import the attachment
119
				}
120
				else if(substr($str,0,12) == '<attachment ')
121
				{
122
					if($this->importAttaches($fp, $module_srl, $obj->document_srl, $files, $str)) $obj->uploaded_count++;
123
					continue;
124
				}
125
126
				if($started) $buff .= $str;
127
			}