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/comment/comment.item.php 1 location

@@ 412-421 (lines=10) @@
409
		return getFullUrl('', 'mid', $this->getCommentMid(), 'document_srl', $this->get('document_srl')) . '#comment_' . $this->get('comment_srl');
410
	}
411
412
	function getUpdateTime()
413
	{
414
		$year = substr($this->get('last_update'), 0, 4);
415
		$month = substr($this->get('last_update'), 4, 2);
416
		$day = substr($this->get('last_update'), 6, 2);
417
		$hour = substr($this->get('last_update'), 8, 2);
418
		$min = substr($this->get('last_update'), 10, 2);
419
		$sec = substr($this->get('last_update'), 12, 2);
420
		return mktime($hour, $min, $sec, $month, $day, $year);
421
	}
422
423
	function getUpdateGM()
424
	{

modules/document/document.item.php 1 location

@@ 600-609 (lines=10) @@
597
		return zdate($this->get('last_update'), $format);
598
	}
599
600
	function getUpdateTime()
601
	{
602
		$year = substr($this->get('last_update'),0,4);
603
		$month = substr($this->get('last_update'),4,2);
604
		$day = substr($this->get('last_update'),6,2);
605
		$hour = substr($this->get('last_update'),8,2);
606
		$min = substr($this->get('last_update'),10,2);
607
		$sec = substr($this->get('last_update'),12,2);
608
		return mktime($hour,$min,$sec,$month,$day,$year);
609
	}
610
611
	function getUpdateGM()
612
	{