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

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

modules/document/document.item.php 1 location

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