summaryrefslogtreecommitdiff
path: root/ajax.php
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-01 13:30:02 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-01 13:30:02 -0500
commit6acff0fba312ac169fe02882c03ba5f1de4b27ae (patch)
treed84530cfe960691cc724ebac2bed605a3b3cd75f /ajax.php
parent6e4ff4522532da0af3daead83ed469081a01e18c (diff)
downloadboards-6acff0fba312ac169fe02882c03ba5f1de4b27ae.tar.gz
boards-6acff0fba312ac169fe02882c03ba5f1de4b27ae.tar.bz2
boards-6acff0fba312ac169fe02882c03ba5f1de4b27ae.zip
move classes to includes/classes and use PKG_CLASS/INCLUDE_PATH constants
Diffstat (limited to 'ajax.php')
-rw-r--r--ajax.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/ajax.php b/ajax.php
index 4b8c28b..8da05f7 100644
--- a/ajax.php
+++ b/ajax.php
@@ -87,7 +87,7 @@ set_error_handler("ajax_nice_error");
switch ($_GET['req']) {
case 10:
- require_once( BOARDS_PKG_PATH.'BitBoardPost.php' );
+ require_once( BOARDS_PKG_CLASS_PATH.'BitBoardPost.php' );
$comment = new BitBoardPost($_GET['comment_id']);
$comment->loadMetaData();
if (@$comment->verifyId($comment->mCommentId)) {