diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2021-02-02 01:12:50 -0500 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2021-02-02 01:12:50 -0500 |
| commit | 507082a1cb1e65af2003f2b15437df33e2ac0d25 (patch) | |
| tree | dc8a1e1261afc74498edadb0709308114a566a01 /index.php | |
| parent | 6acff0fba312ac169fe02882c03ba5f1de4b27ae (diff) | |
| download | boards-507082a1cb1e65af2003f2b15437df33e2ac0d25.tar.gz boards-507082a1cb1e65af2003f2b15437df33e2ac0d25.tar.bz2 boards-507082a1cb1e65af2003f2b15437df33e2ac0d25.zip | |
move _inc and _lib to includes/ and use PKG_INCLUDE_PATH constants
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,9 +8,9 @@ require_once( '../kernel/setup_inc.php' ); $gBitSystem->verifyPackage( 'boards' ); if( !empty( $_REQUEST['t'] ) || !empty( $_REQUEST['migrate_topic_id'] ) || !empty( $_REQUEST['migrate_post_id'] ) ) { - require( BOARDS_PKG_PATH.'view_topic_inc.php' ); + require( BOARDS_PKG_INCLUDE_PATH.'view_topic_inc.php' ); } elseif (!empty($_REQUEST['b']) || !empty( $_REQUEST['migrate_board_id'] ) ) { - require( BOARDS_PKG_PATH.'view_board_inc.php' ); + require( BOARDS_PKG_INCLUDE_PATH.'view_board_inc.php' ); } else { - require( BOARDS_PKG_PATH.'list_boards_inc.php' ); + require( BOARDS_PKG_INCLUDE_PATH.'list_boards_inc.php' ); } |
