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 3 locations

modules/document/document.item.php 1 location

@@ 392-392 (lines=1) @@
389
		$attrs = array();
390
		$this->add('title_color', trim($this->get('title_color')));
391
		if($this->get('title_bold')=='Y') $attrs[] = "font-weight:bold;";
392
		if($this->get('title_color') && $this->get('title_color') != 'N') $attrs[] = "color:#".$this->get('title_color');
393
394
		if(count($attrs)) return sprintf("<span style=\"%s\">%s</span>", implode(';',$attrs), htmlspecialchars($title, ENT_COMPAT | ENT_HTML401, 'UTF-8', false));
395
		else return htmlspecialchars($title, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);

widgets/content/content.class.php 1 location

@@ 879-879 (lines=1) @@
876
877
		$attrs = array();
878
		if($this->get('title_bold') == 'Y') $attrs[] = 'font-weight:bold';
879
		if($this->get('title_color') && $this->get('title_color') != 'N') $attrs[] = 'color:#'.$this->get('title_color');
880
881
		if(count($attrs)) $title = sprintf("<span style=\"%s\">%s</span>", implode(';', $attrs), $title);
882

widgets/mcontent/mcontent.class.php 1 location

@@ 771-771 (lines=1) @@
768
769
		$attrs = array();
770
		if($this->get('title_bold') == 'Y') $attrs[] = 'font-weight:bold';
771
		if($this->get('title_color') && $this->get('title_color') != 'N') $attrs[] = 'color:#'.$this->get('title_color');
772
773
		if(count($attrs)) $title = sprintf("<span style=\"%s\">%s</span>", implode(';', $attrs), htmlspecialchars($title));
774