blob: ef187cb8ebbca1ab311e9dd7c7b511c29fd2dd58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
// $Header: /cvsroot/bitweaver/_bit_boards/index.php,v 1.4 2007/03/07 20:08: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.
// Initialization
require_once( '../bit_setup_inc.php' );
require_once( BITBOARDS_PKG_PATH.'BitBoard.php' );
require_once( BITBOARDS_PKG_PATH.'BitBoardPost.php' );
require_once( BITBOARDS_PKG_PATH.'BitBoard.php' );
if( !empty( $_REQUEST['t'] ) || !empty( $_REQUEST['migrate_topic_id'] ) ) {
require( BITBOARDS_PKG_PATH.'post.php' );
} elseif (!empty($_REQUEST['b'])) {
require( BITBOARDS_PKG_PATH.'topic.php' );
} else {
require( BITBOARDS_PKG_PATH.'board.php' );
}
?>
|