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

system/helpers/form_helper.php 2 locations

@@ 584-590 (lines=7) @@
581
			$label .= ' for="'.$id.'"';
582
		}
583
584
		if (is_array($attributes) && count($attributes) > 0)
585
		{
586
			foreach ($attributes as $key => $val)
587
			{
588
				$label .= ' '.$key.'="'.$val.'"';
589
			}
590
		}
591
592
		return $label.'>'.$label_text.'</label>';
593
	}
@@ 980-990 (lines=11) @@
977
			$attributes = (array) $attributes;
978
		}
979
980
		if (is_array($attributes))
981
		{
982
			$atts = '';
983
984
			foreach ($attributes as $key => $val)
985
			{
986
				$atts .= ' '.$key.'="'.$val.'"';
987
			}
988
989
			return $atts;
990
		}
991
992
		if (is_string($attributes))
993
		{