summaryrefslogtreecommitdiff
path: root/ajax.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2006-07-29 17:14:26 +0000
committerChristian Fowler <spider@viovio.com>2006-07-29 17:14:26 +0000
commitfaa75981c358230113bf14049a17812c9b6e18e2 (patch)
tree0ded9fabf3b6077b1236e23dee3623d2a7d472a1 /ajax.php
parente95f0d159b77ab3b2ec75c8785d80a37c61cd2c3 (diff)
downloadboards-faa75981c358230113bf14049a17812c9b6e18e2.tar.gz
boards-faa75981c358230113bf14049a17812c9b6e18e2.tar.bz2
boards-faa75981c358230113bf14049a17812c9b6e18e2.zip
total removal of the word from forums, so everything, including tables are just boards -> topics -> posts
Diffstat (limited to 'ajax.php')
-rw-r--r--ajax.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/ajax.php b/ajax.php
index 2d830d8..ec1562f 100644
--- a/ajax.php
+++ b/ajax.php
@@ -13,7 +13,6 @@ require_once( '../bit_setup_inc.php' );
require_once( BITBOARDS_PKG_PATH.'BitBoardTopic.php' );
require_once( BITBOARDS_PKG_PATH.'BitBoardPost.php' );
require_once( BITBOARDS_PKG_PATH.'BitBoard.php' );
-require_once( BITBOARDS_PKG_PATH.'BitBoardForum.php' );
// Is package installed and enabled
$gBitSystem->verifyPackage( 'bitboards' );
@@ -87,8 +86,8 @@ set_error_handler("ajax_nice_error");
switch ($_GET['req']) {
case 1:
- $board = new BitBoardForum();
- $boardList=$board->getForumBoardSelectList();
+ $board = new BitBoard();
+ $boardList=$board->getBoardSelectList();
$gBitSmarty->assign_by_ref('boardList',$boardList);
$gBitSmarty->display('bitpackage:bitboards/ajax.tpl');
break;
@@ -162,4 +161,4 @@ switch ($_GET['req']) {
default:
break;
}
-?> \ No newline at end of file
+?>