diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2021-02-01 23:54:14 -0500 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2021-02-01 23:54:14 -0500 |
| commit | 8e42273cc4e4ea21a6955fb1fce5a3aed5b96df5 (patch) | |
| tree | c3051aced4ea7e7129a6bde669c4ee93fd978212 /modules | |
| parent | cec3828fae8fc189f0f0ae6057a92b36641aab2d (diff) | |
| download | blogs-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 'modules')
| -rw-r--r-- | modules/lastblogposts/mod_last_blog_posts.php | 2 | ||||
| -rw-r--r-- | modules/mod_blog_roll.php | 2 | ||||
| -rw-r--r-- | modules/mod_last_blog_posts.php | 2 | ||||
| -rw-r--r-- | modules/mod_last_created_blogs.php | 2 | ||||
| -rw-r--r-- | modules/mod_last_modified_blogs.php | 2 | ||||
| -rw-r--r-- | modules/mod_top_active_blogs.php | 2 | ||||
| -rw-r--r-- | modules/mod_top_visited_blogs.php | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/modules/lastblogposts/mod_last_blog_posts.php b/modules/lastblogposts/mod_last_blog_posts.php index 845991d..e9c2521 100644 --- a/modules/lastblogposts/mod_last_blog_posts.php +++ b/modules/lastblogposts/mod_last_blog_posts.php @@ -8,7 +8,7 @@ /** * required setup */ -include_once( BLOGS_PKG_PATH.'BitBlogPost.php' ); +include_once( BLOGS_PKG_CLASS_PATH.'BitBlogPost.php' ); // moduleParams contains lots of goodies: extract for easier handling extract( $moduleParams ); diff --git a/modules/mod_blog_roll.php b/modules/mod_blog_roll.php index 691d38c..f508aa0 100644 --- a/modules/mod_blog_roll.php +++ b/modules/mod_blog_roll.php @@ -8,7 +8,7 @@ /** * required setup */ -include_once( BLOGS_PKG_PATH.'BitBlog.php' ); +include_once( BLOGS_PKG_CLASS_PATH.'BitBlog.php' ); global $gQueryUserId, $module_rows, $moduleParams; diff --git a/modules/mod_last_blog_posts.php b/modules/mod_last_blog_posts.php index 5cd1b39..14c6e10 100644 --- a/modules/mod_last_blog_posts.php +++ b/modules/mod_last_blog_posts.php @@ -8,7 +8,7 @@ /** * required setup */ -include_once( BLOGS_PKG_PATH.'BitBlogPost.php' ); +include_once( BLOGS_PKG_CLASS_PATH.'BitBlogPost.php' ); // moduleParams contains lots of goodies: extract for easier handling extract( $moduleParams ); diff --git a/modules/mod_last_created_blogs.php b/modules/mod_last_created_blogs.php index 881aa38..d4e873a 100644 --- a/modules/mod_last_created_blogs.php +++ b/modules/mod_last_created_blogs.php @@ -8,7 +8,7 @@ /** * required setup */ -include_once( BLOGS_PKG_PATH.'BitBlog.php' ); +include_once( BLOGS_PKG_CLASS_PATH.'BitBlog.php' ); global $gQueryUserId, $module_rows, $module_params; diff --git a/modules/mod_last_modified_blogs.php b/modules/mod_last_modified_blogs.php index 9410044..9aba738 100644 --- a/modules/mod_last_modified_blogs.php +++ b/modules/mod_last_modified_blogs.php @@ -8,7 +8,7 @@ /** * required setup */ -include_once( BLOGS_PKG_PATH.'BitBlog.php' ); +include_once( BLOGS_PKG_CLASS_PATH.'BitBlog.php' ); global $gQueryUserId, $moduleParams; //$params = $moduleParams['module_params']; diff --git a/modules/mod_top_active_blogs.php b/modules/mod_top_active_blogs.php index 3c87f8c..e9de007 100644 --- a/modules/mod_top_active_blogs.php +++ b/modules/mod_top_active_blogs.php @@ -8,7 +8,7 @@ /** * required setup */ -include_once( BLOGS_PKG_PATH.'BitBlog.php' ); +include_once( BLOGS_PKG_CLASS_PATH.'BitBlog.php' ); global $gQueryUserId, $gBitThemes, $module_rows, $module_params; diff --git a/modules/mod_top_visited_blogs.php b/modules/mod_top_visited_blogs.php index b2032b8..88ed8c2 100644 --- a/modules/mod_top_visited_blogs.php +++ b/modules/mod_top_visited_blogs.php @@ -8,7 +8,7 @@ /** * required setup */ -include_once( BLOGS_PKG_PATH.'BitBlog.php' ); +include_once( BLOGS_PKG_CLASS_PATH.'BitBlog.php' ); global $gBitThemes; |
