Skip to content

Commit

Permalink
! missing space between attributes
Browse files Browse the repository at this point in the history
Signed-off-by: Spuds <spuds@spudsdesign.com>
  • Loading branch information
Spuds committed Jun 21, 2014
1 parent afb7c9a commit 03f8167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/subs/Menu.subs.php
Expand Up @@ -184,7 +184,7 @@ function createMenu($menuData, $menuOptions = array())

// Does this area have its own icon?
if (isset($area['icon']))
$menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<img ' . (isset($area['class']) ? 'class="' . $area['class'] . '" ' : 'style="background: none"') . 'src="' . $context['menu_image_path'] . '/' . $area['icon'] . '" alt="" />&nbsp;&nbsp;';
$menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '<img ' . (isset($area['class']) ? 'class="' . $area['class'] . '" ' : 'style="background: none"') . ' src="' . $context['menu_image_path'] . '/' . $area['icon'] . '" alt="" />&nbsp;&nbsp;';
else
$menu_context['sections'][$section_id]['areas'][$area_id]['icon'] = '';

Expand Down

0 comments on commit 03f8167

Please sign in to comment.