Code Duplication    Length = 3-6 lines in 2 locations

Themes/default/Themes.template.php 2 locations

@@ 538-540 (lines=3) @@
535
					<dd>
536
						<select id="variant" name="options[default_variant]" onchange="changeVariant(this.value)">';
537
538
		foreach ($context['theme_variants'] as $key => $variant)
539
			echo '
540
							<option value="', $key, '"', $context['default_variant'] == $key ? ' selected' : '', '>', $variant['label'], '</option>';
541
542
		echo '
543
						</select>
@@ 681-686 (lines=6) @@
678
679
		// All the variant thumbnails.
680
		$count = 1;
681
		foreach ($context['theme_variants'] as $key => $variant)
682
		{
683
			echo '
684
			\'', $key, '\': \'', $variant['thumbnail'], '\'', (count($context['theme_variants']) == $count ? '' : ',');
685
			$count++;
686
		}
687
688
		echo '
689
		}