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

classes/security/EmbedFilter.class.php 1 location

@@ 581-589 (lines=9) @@
578
		return $m[0];
579
	}
580
581
	function _addAllowScriptAccess($m)
582
	{
583
		if($this->allowscriptaccessList[$this->allowscriptaccessKey] == 1)
584
		{
585
			$m[0] = $m[0] . '<param name="allowscriptaccess" value="never"></param>';
586
		}
587
		$this->allowscriptaccessKey++;
588
		return $m[0];
589
	}
590
591
	/**
592
	 * Make white domain list cache file from xml config file.

modules/document/document.item.php 1 location

@@ 405-413 (lines=9) @@
402
		return htmlspecialchars($content);
403
	}
404
405
	function _addAllowScriptAccess($m)
406
	{
407
		if($this->allowscriptaccessList[$this->allowscriptaccessKey] == 1)
408
		{
409
			$m[0] = $m[0].'<param name="allowscriptaccess" value="never"></param>';
410
		}
411
		$this->allowscriptaccessKey++;
412
		return $m[0];
413
	}
414
415
	function _checkAllowScriptAccess($m)
416
	{