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

modules/document/document.model.php 1 location

@@ 1248-1255 (lines=8) @@
1245
		if(!$output->toBool()) return $output;
1246
1247
		$oMemberModel = getModel('member');
1248
		if($output->data)
1249
		{
1250
			foreach($output->data as $k => $d)
1251
			{
1252
				$profile_image = $oMemberModel->getProfileImage($d->member_srl);
1253
				$output->data[$k]->src = $profile_image->src;
1254
			}
1255
		}
1256
1257
		$this->add('voted_member_list',$output->data);
1258
	}

modules/comment/comment.model.php 1 location

@@ 1020-1027 (lines=8) @@
1017
		}
1018
1019
		$oMemberModel = getModel('member');
1020
		if($output->data)
1021
		{
1022
			foreach($output->data as $k => $d)
1023
			{
1024
				$profile_image = $oMemberModel->getProfileImage($d->member_srl);
1025
				$output->data[$k]->src = $profile_image->src;
1026
			}
1027
		}
1028
1029
		$this->add('voted_member_list', $output->data);
1030
	}