diff options
| author | wjames5 <will@tekimaki.com> | 2008-07-31 16:54:42 +0000 |
|---|---|---|
| committer | wjames5 <will@tekimaki.com> | 2008-07-31 16:54:42 +0000 |
| commit | 3c7898dca4bd8aa253b471d7ddb078823a753426 (patch) | |
| tree | 873efd945d46b25048ccd2d1b16772d12399c08a /index.php | |
| parent | 0229eff83c859c3ca0177a51b10596149832a17f (diff) | |
| download | boards-3c7898dca4bd8aa253b471d7ddb078823a753426.tar.gz boards-3c7898dca4bd8aa253b471d7ddb078823a753426.tar.bz2 boards-3c7898dca4bd8aa253b471d7ddb078823a753426.zip | |
migrate board topic post to more common file name convention, this will be slightly weird for some tpls temporarily - those will get cleaned up in follow up changes
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' ); } ?> |
