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

@@ 419-427 (lines=9) @@
416
		return htmlspecialchars($content);
417
	}
418
419
	function _addAllowScriptAccess($m)
420
	{
421
		if($this->allowscriptaccessList[$this->allowscriptaccessKey] == 1)
422
		{
423
			$m[0] = $m[0].'<param name="allowscriptaccess" value="never"></param>';
424
		}
425
		$this->allowscriptaccessKey++;
426
		return $m[0];
427
	}
428
429
	function _checkAllowScriptAccess($m)
430
	{