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

classes/context/Context.class.php 2 locations

@@ 685-689 (lines=5) @@
682
			{
683
				$url = base64_decode(self::get('url'));
684
				$url_info = parse_url($url);
685
				if(!Password::checkSignature($url, self::get('sig')))
686
				{
687
					echo self::get('lang')->msg_invalid_request;
688
					return false;
689
				}
690
691
				$oModuleModel = getModel('module');
692
				$domain = $url_info['host'] . $url_info['path'];
@@ 716-720 (lines=5) @@
713
			// result handling : set session_name()
714
			if($session_name = self::get('SSOID'))
715
			{
716
				if(!Password::checkSignature($session_name, self::get('sig')))
717
				{
718
					echo self::get('lang')->msg_invalid_request;
719
					return false;
720
				}
721
722
				setcookie(session_name(), $session_name);
723