Code Duplication    Length = 3-3 lines in 2 locations

Themes/default/Calendar.template.php 1 location

@@ 889-891 (lines=3) @@
886
								<span class="label">', $txt['calendar_timezone'], '</span>
887
								<select name="tz" id="tz"', !empty($context['event']['allday']) ? ' disabled' : '', '>';
888
889
	foreach ($context['all_timezones'] as $tz => $tzname)
890
		echo '
891
									<option', is_numeric($tz) ? ' value="" disabled' : ' value="' . $tz . '"', $tz === $context['event']['tz'] ? ' selected' : '', '>', $tzname, '</option>';
892
893
	echo '
894
								</select>

Themes/default/Post.template.php 1 location

@@ 221-223 (lines=3) @@
218
									<span class="label">', $txt['calendar_timezone'], '</span>
219
									<select name="tz" id="tz"', !empty($context['event']['allday']) ? ' disabled' : '', '>';
220
221
		foreach ($context['all_timezones'] as $tz => $tzname)
222
			echo '
223
										<option', is_numeric($tz) ? ' value="" disabled' : ' value="' . $tz . '"', $tz === $context['event']['tz'] ? ' selected' : '', '>', $tzname, '</option>';
224
225
		echo '
226
									</select>