diff options
Diffstat (limited to 'include/functions_html.inc.php')
-rw-r--r-- | include/functions_html.inc.php | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index b797d2657..b3aacb70d 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -374,27 +374,21 @@ function get_html_menu_category($categories) $menu.= str_repeat("\n</ul>",($ref_level-$level)); } $ref_level = $level; - - $menu.= ' - <li>'; - - $url = add_session_id(PHPWG_ROOT_PATH.'category.php?cat='.$category['id']); + $menu.= ' - $class = ''; + <li'; if (isset($page['cat']) and is_numeric($page['cat']) and $category['id'] == $page['cat']) { - $class = 'menuCategorySelected'; + $menu.= ' class="selected"'; } - else - { - $class = 'menuCategoryNotSelected'; - } - + $menu.= '>'; + + $url = add_session_id(PHPWG_ROOT_PATH.'category.php?cat='.$category['id']); $menu.= ' - <a href="'.$url.'" class="'.$class.'">'.$category['name'].'</a>'; + <a href="'.$url.'">'.$category['name'].'</a>'; if ($category['nb_images'] > 0) { |