|
From: Markus P. <mar...@us...> - 2005-04-25 23:56:39
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17977/modules/mx_coreblocks Modified Files: mx_multiple_blocks.php mx_search.php Log Message: Fixed a couple of things and added mouseover effect to pagination. Index: mx_multiple_blocks.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_multiple_blocks.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mx_multiple_blocks.php 20 Apr 2005 00:20:16 -0000 1.8 --- mx_multiple_blocks.php 25 Apr 2005 23:56:08 -0000 1.9 *************** *** 187,191 **** // echo $module_root_path.$block_file; // ! $template = new mx_Template($template->root, $board_config, $db); include($module_root_path . $block_x_file); --- 187,191 ---- // echo $module_root_path.$block_file; // ! $template = new mx_Template($template->root); include($module_root_path . $block_x_file); Index: mx_search.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_search.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mx_search.php 17 Mar 2005 11:30:36 -0000 1.3 --- mx_search.php 25 Apr 2005 23:56:09 -0000 1.4 *************** *** 466,470 **** // $kb_cat = get_info(BLOCK_TABLE, 'block_id', $searchset[$i]['block_id'] ); ! $temp_url = !empty($searchset[$i]['menu_name']) ? append_sid( $mx_root_path . 'index.php?page=' . $page_id . '&dynamic_block=' . $searchset[$i]['block_id'] ) : append_sid( $mx_root_path . 'index.php?page=' . $page_id ); $category = '<a href="' . $temp_url . '" class="name">' .$searchset[$i]['block_title'] . '</a>' . ( !empty($searchset[$i]['menu_name']) ? ' (' . $searchset[$i]['menu_name'] . ')': '' ); --- 466,470 ---- // $kb_cat = get_info(BLOCK_TABLE, 'block_id', $searchset[$i]['block_id'] ); ! $temp_url = !empty($searchset[$i]['menu_name']) ? append_sid( PORTAL_URL . 'index.php?page=' . $page_id . '&dynamic_block=' . $searchset[$i]['block_id'] ) : append_sid( PORTAL_URL . 'index.php?page=' . $page_id ); $category = '<a href="' . $temp_url . '" class="name">' .$searchset[$i]['block_title'] . '</a>' . ( !empty($searchset[$i]['menu_name']) ? ' (' . $searchset[$i]['menu_name'] . ')': '' ); *************** *** 478,482 **** } ! $article_author = '<a href="' . append_sid( $phpbb_root_path . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $searchset[$i]['user_id'] ) . '" class="name">'; $article_author .= $searchset[$i]['username']; $article_author .= '</a>'; --- 478,482 ---- } ! $article_author = '<a href="' . append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $searchset[$i]['user_id']) . '" class="name">'; $article_author .= $searchset[$i]['username']; $article_author .= '</a>'; |