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

widgets/content/content.class.php 1 location

@@ 471-471 (lines=1) @@
468
		$buff = $this->requestFeedContents($args->rss_url);
469
470
		$encoding = preg_match("/<\?xml.*encoding=\"(.+)\".*\?>/i", $buff, $matches);
471
		if($encoding && stripos($matches[1], "UTF-8") === FALSE) $buff = Context::convertEncodingStr($buff);
472
473
		$buff = preg_replace("/<\?xml.*\?>/i", "", $buff);
474

widgets/mcontent/mcontent.class.php 1 location

@@ 419-419 (lines=1) @@
416
		$buff = $this->requestFeedContents($args->rss_url);
417
418
		$encoding = preg_match("/<\?xml.*encoding=\"(.+)\".*\?>/i", $buff, $matches);
419
		if($encoding && stripos($matches[1], "UTF-8") === FALSE) $buff = Context::convertEncodingStr($buff);
420
421
		$buff = preg_replace("/<\?xml.*\?>/i", "", $buff);
422