|
From: Jon O. <jon...@us...> - 2008-03-09 23:39:35
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18330 Modified Files: navmenu_functions.php Log Message: Virtual pages See notes is Dev area Index: navmenu_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/includes/navmenu_functions.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** navmenu_functions.php 9 Feb 2008 19:46:55 -0000 1.12 --- navmenu_functions.php 9 Mar 2008 23:39:30 -0000 1.13 *************** *** 413,417 **** function output_menu($page_data, $current_parent_page) { ! global $mx_page, $template, $phpEx, $images, $block_id, $mx_root_path; $row_color_over = $theme['tr_color2']; --- 413,417 ---- function output_menu($page_data, $current_parent_page) { ! global $mx_page, $template, $phpEx, $images, $block_id, $mx_root_path, $virtual_id; $row_color_over = $theme['tr_color2']; *************** *** 456,460 **** // Generate Links // ! $menu_link = mx_append_sid(PORTAL_URL . 'index.php?page=' . $page_data['page_id']); $link_target = ( true ) ? '' : '_blank'; --- 456,460 ---- // 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'; |