diff options
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_boards/index.php,v 1.7 2007/03/31 15:54:13 squareing Exp $ +// $Header: /cvsroot/bitweaver/_bit_boards/index.php,v 1.8 2008/07/31 16:54:41 wjames5 Exp $ // Copyright (c) 2004 bitweaver Messageboards // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. @@ -10,11 +10,11 @@ require_once( BOARDS_PKG_PATH.'BitBoardPost.php' ); require_once( BOARDS_PKG_PATH.'BitBoard.php' ); if( !empty( $_REQUEST['t'] ) || !empty( $_REQUEST['migrate_topic_id'] ) || !empty( $_REQUEST['migrate_post_id'] ) ) { - require( BOARDS_PKG_PATH.'post.php' ); + require( BOARDS_PKG_PATH.'view_topic_inc.php' ); } elseif (!empty($_REQUEST['b']) || !empty( $_REQUEST['migrate_board_id'] ) ) { - require( BOARDS_PKG_PATH.'topic.php' ); + require( BOARDS_PKG_PATH.'view_board_inc.php' ); } else { - require( BOARDS_PKG_PATH.'board.php' ); + require( BOARDS_PKG_PATH.'list_boards_inc.php' ); } ?> |
