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 4 locations

modules/comment/comment.controller.php 2 locations

@@ 280-287 (lines=8) @@
277
				return new Object(-1, 'msg_invalid_request');
278
			}
279
280
			if($obj->homepage)
281
			{
282
				$obj->homepage = removeHackTag($obj->homepage);
283
				if(!preg_match('/^[a-z]+:\/\//i',$obj->homepage))
284
				{
285
					$obj->homepage = 'http://'.$obj->homepage;
286
				}
287
			}
288
289
			// input the member's information if logged-in
290
			if(Context::get('is_logged'))
@@ 693-700 (lines=8) @@
690
			$obj->password = getModel('member')->hashPassword($obj->password);
691
		}
692
693
		if($obj->homepage) 
694
		{
695
			$obj->homepage = removeHackTag($obj->homepage);
696
			if(!preg_match('/^[a-z]+:\/\//i',$obj->homepage))
697
			{
698
				$obj->homepage = 'http://'.$obj->homepage;
699
			}
700
		}
701
702
		// set modifier's information if logged-in and posting author and modifier are matched.
703
		if(Context::get('is_logged'))

modules/document/document.controller.php 2 locations

@@ 209-216 (lines=8) @@
206
		if(!$obj->commentStatus) $obj->commentStatus = 'DENY';
207
		if($obj->commentStatus == 'DENY') $this->_checkCommentStatusForOldVersion($obj);
208
		if($obj->allow_trackback!='Y') $obj->allow_trackback = 'N';
209
		if($obj->homepage) 
210
		{
211
			$obj->homepage = removeHackTag($obj->homepage);
212
			if(!preg_match('/^[a-z]+:\/\//i',$obj->homepage))
213
			{
214
				$obj->homepage = 'http://'.$obj->homepage;
215
			}
216
		}
217
		
218
		if($obj->notify_message != 'Y') $obj->notify_message = 'N';
219
		if(!$obj->email_address) $obj->email_address = '';
@@ 413-420 (lines=8) @@
410
		if(!$obj->commentStatus) $obj->commentStatus = 'DENY';
411
		if($obj->commentStatus == 'DENY') $this->_checkCommentStatusForOldVersion($obj);
412
		if($obj->allow_trackback!='Y') $obj->allow_trackback = 'N';
413
		if($obj->homepage)
414
		{
415
			$obj->homepage = removeHackTag($obj->homepage);
416
			if(!preg_match('/^[a-z]+:\/\//i',$obj->homepage))
417
			{
418
				$obj->homepage = 'http://'.$obj->homepage;
419
			}
420
		}
421
		
422
		if($obj->notify_message != 'Y') $obj->notify_message = 'N';
423