Code Duplication    Length = 2-2 lines in 2 locations

Themes/default/GenericMenu.template.php 2 locations

@@ 222-223 (lines=2) @@
219
			if (!empty($selected_tab['icon_class']) || !empty($tab_context['icon_class']))
220
				echo '
221
								<span class="', !empty($selected_tab['icon_class']) ? $selected_tab['icon_class'] : $tab_context['icon_class'], ' icon"></span>';
222
			elseif (!empty($selected_tab['icon']) || !empty($tab_context['icon']))
223
				echo '
224
								<img src="', $settings['images_url'], '/icons/', !empty($selected_tab['icon']) ? $selected_tab['icon'] : $tab_context['icon'], '" alt="" class="icon">';
225
226
			if (!empty($selected_tab['help']) || !empty($tab_context['help']))
@@ 226-227 (lines=2) @@
223
				echo '
224
								<img src="', $settings['images_url'], '/icons/', !empty($selected_tab['icon']) ? $selected_tab['icon'] : $tab_context['icon'], '" alt="" class="icon">';
225
226
			if (!empty($selected_tab['help']) || !empty($tab_context['help']))
227
				echo '
228
								<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>';
229
230
			echo $tab_context['title'];