summaryrefslogtreecommitdiff
path: root/edit_topic.php
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:10:32 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:10:32 -0500
commit7d44ce010e8f0ee26c7233d99bc0a8eb46cbc16a (patch)
tree82be820e79872e33b7a06bb90032564a894fafb5 /edit_topic.php
parentbc123ce74635945fd967a862bcf4cf77451e86fd (diff)
downloadarticles-7d44ce010e8f0ee26c7233d99bc0a8eb46cbc16a.tar.gz
articles-7d44ce010e8f0ee26c7233d99bc0a8eb46cbc16a.tar.bz2
articles-7d44ce010e8f0ee26c7233d99bc0a8eb46cbc16a.zip
move _inc and _lib to includes/ and use PKG_INCLUDE_PATH constants
Diffstat (limited to 'edit_topic.php')
-rw-r--r--edit_topic.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/edit_topic.php b/edit_topic.php
index b027716..816d831 100644
--- a/edit_topic.php
+++ b/edit_topic.php
@@ -9,9 +9,9 @@
* Initialization
*/
require_once '../kernel/setup_inc.php';
-require_once( ARTICLES_PKG_PATH."BitArticle.php" );
+require_once( ARTICLES_PKG_CLASS_PATH.'BitArticle.php' );
-include_once( ARTICLES_PKG_PATH."lookup_article_topic_inc.php" );
+include_once( ARTICLES_PKG_INCLUDE_PATH.'lookup_article_topic_inc.php' );
if ( !$gBitSystem->verifyPackage( 'articles' ) ) {
$gBitSmarty->assign( 'msg', tra( "This package is disabled" ) . ": Articles" );