Code Duplication    Length = 2-6 lines in 2 locations

Sources/Subs-Auth.php 2 locations

@@ 362-363 (lines=2) @@
359
			if (!isset($temp[$k]))
360
				$query_string .= urlencode($k) . '=' . urlencode($v) . ';';
361
			// If it changed, put it out there, but with an ampersand.
362
			elseif ($temp[$k] != $get[$k])
363
				$query_string .= urlencode($k) . '=' . urlencode($v) . '&';
364
		}
365
	}
366
	else
@@ 366-371 (lines=6) @@
363
				$query_string .= urlencode($k) . '=' . urlencode($v) . '&';
364
		}
365
	}
366
	else
367
	{
368
		// Add up all the data from $_GET into get_data.
369
		foreach ($get as $k => $v)
370
			$query_string .= urlencode($k) . '=' . urlencode($v) . ';';
371
	}
372
373
	$query_string = substr($query_string, 0, -1);
374
	return $query_string;