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

Sistema/Ayudantes/CFPHPFormularios.php 2 locations

@@ 230-234 (lines=5) @@
227
		// Por el contrario, tenemos 1 o m�s value con lo que es un posible texto
228
		// Ahora preparamos todos los input
229
		$r = '';
230
		foreach ($values as $id=>$text) {
231
			$r .= $base;
232
			if ($selected !== null and $id == $selected) $r .= ' checked="checked" ';
233
			$r .= ' value="'. $id .'" />'.$text.'</label>';
234
		}
235
		
236
		return $r;
237
		
@@ 264-268 (lines=5) @@
261
		// Loading options
262
		// To speed up processes, we have two whiles depending if are any selected value
263
		if ($selected != '') {
264
			foreach ($values as $val=>$txt) {
265
				$r .= '<option value="' . $val . '"';
266
					if ($val == $selected) $r .= ' selected ';
267
				$r .= '>' . $txt . '</option>';
268
			}
269
		} else {
270
			foreach ($values as $val=>$txt) {
271
				$r .= '<option value="' . $val . '">' . $txt . '</option>';