|
From: Jon O. <jon...@us...> - 2005-12-11 16:13:51
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17207/modules/mx_navmenu Modified Files: mx_menu_nav.php Log Message: Adding php5 support + minor fixes Index: mx_menu_nav.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/mx_menu_nav.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** mx_menu_nav.php 8 Dec 2005 14:41:48 -0000 1.6 --- mx_menu_nav.php 11 Dec 2005 16:13:40 -0000 1.7 *************** *** 153,158 **** } ! $row_color = ( !( $row_count % 2 ) ) ? $theme['td_color1'] : $theme['td_color2']; ! $row_class = ( !( $row_count % 2 ) ) ? $theme['td_class1'] : $theme['td_class2']; $action = $mx_nav_data[$menu_count]['menu_name']; --- 153,158 ---- } ! $row_color = ( !( $menu_count % 2 ) ) ? $theme['td_color1'] : $theme['td_color2']; ! $row_class = ( !( $menu_count % 2 ) ) ? $theme['td_class1'] : $theme['td_class2']; $action = $mx_nav_data[$menu_count]['menu_name']; *************** *** 259,268 **** 'L_TITLE' => $title, 'L_DESC' => $b_description, - 'S_ACTION' => $edit_url, - 'EDIT_IMG' => $edit_img, 'NUM_OF_CATS' => $num_of_cats, 'NUM_OF_CATS_EDIT' => $num_of_cats - 1, ! 'CAT_WIDTH' => $cat_width, ! 'S_HIDDEN_FORM_FIELDS' => $s_hidden_fields )); --- 259,265 ---- 'L_TITLE' => $title, 'L_DESC' => $b_description, 'NUM_OF_CATS' => $num_of_cats, 'NUM_OF_CATS_EDIT' => $num_of_cats - 1, ! 'CAT_WIDTH' => $cat_width )); |