summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2007-03-31 15:54:14 +0000
committerMax Kremmel <xing@synapse.plus.com>2007-03-31 15:54:14 +0000
commit65a6ecbd758c331a851ae5ac12abed135abe0334 (patch)
tree0e2741a679966a1a711580ac50290bf09b17bb24 /index.php
parent9806e9356f7ee3793510747d52313bd79eff0f7e (diff)
downloadboards-65a6ecbd758c331a851ae5ac12abed135abe0334.tar.gz
boards-65a6ecbd758c331a851ae5ac12abed135abe0334.tar.bz2
boards-65a6ecbd758c331a851ae5ac12abed135abe0334.zip
rename bitboards to boards
Diffstat (limited to 'index.php')
-rw-r--r--index.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/index.php b/index.php
index 7ca8200..0b3b85f 100644
--- a/index.php
+++ b/index.php
@@ -1,20 +1,20 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_boards/index.php,v 1.6 2007/03/07 21:40:29 spiderr Exp $
+// $Header: /cvsroot/bitweaver/_bit_boards/index.php,v 1.7 2007/03/31 15:54:13 squareing 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' );
+require_once( BOARDS_PKG_PATH.'BitBoard.php' );
+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( BITBOARDS_PKG_PATH.'post.php' );
+ require( BOARDS_PKG_PATH.'post.php' );
} elseif (!empty($_REQUEST['b']) || !empty( $_REQUEST['migrate_board_id'] ) ) {
- require( BITBOARDS_PKG_PATH.'topic.php' );
+ require( BOARDS_PKG_PATH.'topic.php' );
} else {
- require( BITBOARDS_PKG_PATH.'board.php' );
+ require( BOARDS_PKG_PATH.'board.php' );
}
?>