diff options
| author | Christian Fowler <spider@viovio.com> | 2007-03-07 21:40:29 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2007-03-07 21:40:29 +0000 |
| commit | 00c70b79b1d47716e98920306dfb1248107f5a0f (patch) | |
| tree | 65b2cf77733b9627d38229be63c38bde8d5f36cd /index.php | |
| parent | 5f8c7b38b811d4d03dff9866ae5c880eca8548d4 (diff) | |
| download | boards-00c70b79b1d47716e98920306dfb1248107f5a0f.tar.gz boards-00c70b79b1d47716e98920306dfb1248107f5a0f.tar.bz2 boards-00c70b79b1d47716e98920306dfb1248107f5a0f.zip | |
handle migrate_board_id just to be thorough
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_boards/index.php,v 1.5 2007/03/07 21:02:28 spiderr Exp $ +// $Header: /cvsroot/bitweaver/_bit_boards/index.php,v 1.6 2007/03/07 21:40:29 spiderr 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. @@ -11,7 +11,7 @@ require_once( BITBOARDS_PKG_PATH.'BitBoard.php' ); if( !empty( $_REQUEST['t'] ) || !empty( $_REQUEST['migrate_topic_id'] ) || !empty( $_REQUEST['migrate_post_id'] ) ) { require( BITBOARDS_PKG_PATH.'post.php' ); -} elseif (!empty($_REQUEST['b'])) { +} elseif (!empty($_REQUEST['b']) || !empty( $_REQUEST['migrate_board_id'] ) ) { require( BITBOARDS_PKG_PATH.'topic.php' ); } else { require( BITBOARDS_PKG_PATH.'board.php' ); |
