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

config/func.inc.php 2 locations

@@ 654-657 (lines=4) @@
651
	{
652
		$buff = sprintf($lang_time_gap['mins'], (int) ($gap / 60) + 1);
653
	}
654
	elseif($gap < 60 * 60 * 2)
655
	{
656
		$buff = sprintf($lang_time_gap['hour'], (int) ($gap / 60 / 60) + 1);
657
	}
658
	elseif($gap < 60 * 60 * 24)
659
	{
660
		$buff = sprintf($lang_time_gap['hours'], (int) ($gap / 60 / 60) + 1);
@@ 658-661 (lines=4) @@
655
	{
656
		$buff = sprintf($lang_time_gap['hour'], (int) ($gap / 60 / 60) + 1);
657
	}
658
	elseif($gap < 60 * 60 * 24)
659
	{
660
		$buff = sprintf($lang_time_gap['hours'], (int) ($gap / 60 / 60) + 1);
661
	}
662
	else
663
	{
664
		$buff = zdate($date, $format);