|
From: Jon O. <jon...@us...> - 2008-05-03 21:40:47
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2440 Modified Files: navmenu_functions.php Log Message: bugfix for virtual ids Index: navmenu_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/includes/navmenu_functions.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** navmenu_functions.php 27 Apr 2008 18:44:43 -0000 1.14 --- navmenu_functions.php 3 May 2008 21:40:40 -0000 1.15 *************** *** 459,463 **** // Generate Links // ! $menu_link = mx_append_sid(PORTAL_URL . 'index.php?page=' . $page_data['page_id'] . !empty($virtual_id) ? '&virtual=' . $virtual_id : '') ; $link_target = ( true ) ? '' : '_blank'; --- 459,463 ---- // Generate Links // ! $menu_link = mx_append_sid(PORTAL_URL . 'index.php?page=' . $page_data['page_id']) . ( !empty($virtual_id) ? '&virtual=' . $virtual_id : ''); $link_target = ( true ) ? '' : '_blank'; *************** *** 470,474 **** 'MENU_SEP' => $menu_sep, 'U_MENU_URL' => $menu_link, ! 'U_MENU_URL_TARGET' => $link_target, 'U_MENU_ICON' => $menu_icon, 'CURRENT' => $is_current ? '-current' : '', --- 470,474 ---- 'MENU_SEP' => $menu_sep, 'U_MENU_URL' => $menu_link, ! 'U_MENU_URL_TARGET' => $link_target, 'U_MENU_ICON' => $menu_icon, 'CURRENT' => $is_current ? '-current' : '', |