diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2021-02-01 13:30:02 -0500 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2021-02-01 13:30:02 -0500 |
| commit | 6acff0fba312ac169fe02882c03ba5f1de4b27ae (patch) | |
| tree | d84530cfe960691cc724ebac2bed605a3b3cd75f /mailing_list.php | |
| parent | 6e4ff4522532da0af3daead83ed469081a01e18c (diff) | |
| download | boards-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 'mailing_list.php')
| -rw-r--r-- | mailing_list.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mailing_list.php b/mailing_list.php index 8375619..cee68b4 100644 --- a/mailing_list.php +++ b/mailing_list.php @@ -13,9 +13,9 @@ * required setup */ require_once( '../kernel/setup_inc.php' ); -require_once( BOARDS_PKG_PATH.'BitBoardTopic.php' ); -require_once( BOARDS_PKG_PATH.'BitBoardPost.php' ); -require_once( BOARDS_PKG_PATH.'BitBoard.php' ); +require_once( BOARDS_PKG_CLASS_PATH.'BitBoardTopic.php' ); +require_once( BOARDS_PKG_CLASS_PATH.'BitBoardPost.php' ); +require_once( BOARDS_PKG_CLASS_PATH.'BitBoard.php' ); require_once( BOARDS_PKG_PATH.'lookup_inc.php' ); require_once( UTIL_PKG_INC.'mailman_lib.php' ); |
