summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.php b/index.php
index c5aecbd..9cc8fd5 100644
--- a/index.php
+++ b/index.php
@@ -13,13 +13,13 @@
/**
* required setup
*/
-require_once( '../kernel/setup_inc.php' );
+require_once( '../kernel/includes/setup_inc.php' );
$gBitSystem->verifyPackage( 'wiki' );
-require_once( WIKI_PKG_PATH.'BitPage.php' );
+require_once( WIKI_PKG_CLASS_PATH.'BitPage.php' );
if( !empty( $_REQUEST['structure_id'] ) ) {
- include( LIBERTY_PKG_PATH.'display_structure_inc.php' );
+ include( LIBERTY_PKG_INCLUDE_PATH.'structure_display_inc.php' );
} else {
// if no page set
if ( !isset( $_REQUEST['page'] ) and !isset( $_REQUEST['page_id'] ) ) {
@@ -43,9 +43,9 @@ if( !empty( $_REQUEST['structure_id'] ) ) {
$gHome->store( $homeHash );
}
- include( WIKI_PKG_PATH.'lookup_page_inc.php' );
+ include( WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php' );
if( $gContent->isValid() ) {
$gBitSystem->setCanonicalLink( $gContent->getDisplayUrl() );
}
- include( WIKI_PKG_PATH.'display_bitpage_inc.php' );
+ include( WIKI_PKG_INCLUDE_PATH.'display_bitpage_inc.php' );
}