summaryrefslogtreecommitdiff
path: root/print_blog_post.php
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-01 23:54:14 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-01 23:54:14 -0500
commit8e42273cc4e4ea21a6955fb1fce5a3aed5b96df5 (patch)
treec3051aced4ea7e7129a6bde669c4ee93fd978212 /print_blog_post.php
parentcec3828fae8fc189f0f0ae6057a92b36641aab2d (diff)
downloadblogs-8e42273cc4e4ea21a6955fb1fce5a3aed5b96df5.tar.gz
blogs-8e42273cc4e4ea21a6955fb1fce5a3aed5b96df5.tar.bz2
blogs-8e42273cc4e4ea21a6955fb1fce5a3aed5b96df5.zip
move _inc and classes to includes/classes and use PKG_CLASS/INCLUDE_PATH constants
Diffstat (limited to 'print_blog_post.php')
-rw-r--r--print_blog_post.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/print_blog_post.php b/print_blog_post.php
index ce96ad0..c970db0 100644
--- a/print_blog_post.php
+++ b/print_blog_post.php
@@ -14,7 +14,7 @@
*/
require_once( '../kernel/setup_inc.php' );
-include_once( BLOGS_PKG_PATH.'BitBlogPost.php' );
+include_once( BLOGS_PKG_CLASS_PATH.'BitBlogPost.php' );
$gBitSystem->verifyPackage( 'blogs' );
@@ -22,7 +22,7 @@ if (!isset($_REQUEST["post_id"])) {
$gBitSystem->fatalError( tra( 'No post indicated' ));
}
-include_once( BLOGS_PKG_PATH.'lookup_post_inc.php' );
+include_once( BLOGS_PKG_INCLUDE_PATH.'lookup_post_inc.php' );
$gBitSmarty->assign('post_info', $gContent->mInfo );