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

modules/member/member.view.php 2 locations

@@ 457-466 (lines=10) @@
454
		$member_info = $oMemberModel->getMemberInfoByMemberSrl($member_srl, 0, $columnList);
455
		Context::set('member_info',$member_info);
456
457
		if($memberConfig->identifier == 'user_id')
458
		{
459
			Context::set('identifier', 'user_id');
460
			Context::set('formValue', $member_info->user_id);
461
		}
462
		else
463
		{
464
			Context::set('identifier', 'email_address');
465
			Context::set('formValue', $member_info->email_address);
466
		}
467
		// Set a template file
468
		$this->setTemplateFile('modify_password');
469
	}
@@ 488-497 (lines=10) @@
485
		$member_info = $oMemberModel->getMemberInfoByMemberSrl($member_srl);
486
		Context::set('member_info',$member_info);
487
488
		if($memberConfig->identifier == 'user_id')
489
		{
490
			Context::set('identifier', 'user_id');
491
			Context::set('formValue', $member_info->user_id);
492
		}
493
		else
494
		{
495
			Context::set('identifier', 'email_address');
496
			Context::set('formValue', $member_info->email_address);
497
		}
498
		// Set a template file
499
		$this->setTemplateFile('leave_form');
500
	}