summaryrefslogtreecommitdiff
path: root/edit_topic.php
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:12:50 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:12:50 -0500
commit507082a1cb1e65af2003f2b15437df33e2ac0d25 (patch)
treedc8a1e1261afc74498edadb0709308114a566a01 /edit_topic.php
parent6acff0fba312ac169fe02882c03ba5f1de4b27ae (diff)
downloadboards-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 'edit_topic.php')
-rw-r--r--edit_topic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit_topic.php b/edit_topic.php
index 15ba29b..381879e 100644
--- a/edit_topic.php
+++ b/edit_topic.php
@@ -17,7 +17,7 @@ require_once( '../kernel/setup_inc.php' );
$gBitSystem->verifyPackage( 'boards' );
// Look up Topic (lookup_inc is universal, gContent == BitBoardTopic)
-require_once( BOARDS_PKG_PATH.'lookup_inc.php' );
+require_once( BOARDS_PKG_INCLUDE_PATH.'lookup_inc.php' );
// Make sure topic exists since we only run through here for existing topics. New topics are created via comment system.
if( !$gContent->isValid() ){