summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:17:54 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-02 01:17:54 -0500
commit46f16280083e21264d6499899f447999a95a534e (patch)
tree5c091b61ae841d110622146e68ca7dc5eb4399da /modules
parent8e8fb7e46c83f9c66d88cedbbd30c67f87c7a2d4 (diff)
downloadwiki-46f16280083e21264d6499899f447999a95a534e.tar.gz
wiki-46f16280083e21264d6499899f447999a95a534e.tar.bz2
wiki-46f16280083e21264d6499899f447999a95a534e.zip
move _inc and _lib to includes/ and use PKG_INCLUDE_PATH constants
Diffstat (limited to 'modules')
-rw-r--r--modules/mod_wiki_last_comments.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_wiki_last_comments.php b/modules/mod_wiki_last_comments.php
index 4f8e544..b3d8fae 100644
--- a/modules/mod_wiki_last_comments.php
+++ b/modules/mod_wiki_last_comments.php
@@ -18,7 +18,7 @@ global $gQueryUserId, $moduleParams;
* required setup
*/
if( $gBitUser->hasPermission( 'p_wiki_view_page' ) ) {
- require_once( LIBERTY_PKG_PATH.'LibertyComment.php' );
+ require_once( LIBERTY_PKG_CLASS_PATH.'LibertyComment.php' );
$cmt = new LibertyComment();
$listHash = array( 'max_records' => $moduleParams['module_rows'], 'user_id' => $gQueryUserId, 'content_type_guid' => BITPAGE_CONTENT_TYPE_GUID );
$lastComments = $cmt->getList( $listHash );