|
From: Jon O. <jon...@us...> - 2008-04-27 18:44:48
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13157/modules/mx_navmenu/includes Modified Files: navmenu_functions.php Log Message: This and that, forgot the details...sorry... Index: navmenu_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/includes/navmenu_functions.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** navmenu_functions.php 9 Mar 2008 23:39:30 -0000 1.13 --- navmenu_functions.php 27 Apr 2008 18:44:43 -0000 1.14 *************** *** 349,352 **** --- 349,354 ---- // $cat_on = $current_parent_page ? true : ( isset($_COOKIE['mxNavCat_' . $block_id . $page_data['page_id']]) ? $_COOKIE['mxNavCat_' . $block_id . $page_data['page_id']] == 1 : $catData[0]['cat_show'] == 1 ); + $menu_sep = $first_menu ? '' : '|'; + $first_menu = false; $template->assign_block_vars('catrow', array( *************** *** 362,365 **** --- 364,368 ---- 'U_MENU_ICON' => $menu_icon, 'CURRENT' => $current_parent_page ? '-current' : '', + 'MENU_SEP' => $menu_sep, // *************** *** 393,397 **** 'CATEGORY_STYLE' => $style, 'CURRENT' => $is_current ? '-current' : '', ! )); } --- 396,400 ---- 'CATEGORY_STYLE' => $style, 'CURRENT' => $is_current ? '-current' : '', ! 'MENU_SEP' => $menu_sep, )); } |