Code Duplication    Length = 2-2 lines in 2 locations

Themes/default/GenericMenu.template.php 2 locations

@@ 212-213 (lines=2) @@
209
			if (!empty($selected_tab['icon_class']) || !empty($tab_context['icon_class']))
210
				echo '
211
								<span class="', !empty($selected_tab['icon_class']) ? $selected_tab['icon_class'] : $tab_context['icon_class'], ' icon"></span>';
212
			elseif (!empty($selected_tab['icon']) || !empty($tab_context['icon']))
213
				echo '
214
								<img src="', $settings['images_url'], '/icons/', !empty($selected_tab['icon']) ? $selected_tab['icon'] : $tab_context['icon'], '" alt="" class="icon">';
215
216
			if (!empty($selected_tab['help']) || !empty($tab_context['help']))
@@ 216-217 (lines=2) @@
213
				echo '
214
								<img src="', $settings['images_url'], '/icons/', !empty($selected_tab['icon']) ? $selected_tab['icon'] : $tab_context['icon'], '" alt="" class="icon">';
215
216
			if (!empty($selected_tab['help']) || !empty($tab_context['help']))
217
				echo '
218
								<a href="', $scripturl, '?action=helpadmin;help=', !empty($selected_tab['help']) ? $selected_tab['help'] : $tab_context['help'], '" onclick="return reqOverlayDiv(this.href);" class="help"><span class="generic_icons help" title="', $txt['help'], '"></span></a>';
219
220
			echo $tab_context['title'];