summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-12-23 16:43:49 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-12-23 16:43:49 +0000
commit8b69f5eba81e16cd10d0354add5ffcfcb94327f0 (patch)
treeed2a0cdb0d06fd08547731d180b2e018a90ea319 /index.php
parentf0c2c3e7a48e565cab048de62331581184cfb174 (diff)
downloadwiki-8b69f5eba81e16cd10d0354add5ffcfcb94327f0.tar.gz
wiki-8b69f5eba81e16cd10d0354add5ffcfcb94327f0.tar.bz2
wiki-8b69f5eba81e16cd10d0354add5ffcfcb94327f0.zip
update outdated code
Diffstat (limited to 'index.php')
-rw-r--r--index.php17
1 files changed, 6 insertions, 11 deletions
diff --git a/index.php b/index.php
index 0eac0ac..1b66d5d 100644
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_wiki/index.php,v 1.9 2006/08/29 13:00:26 squareing Exp $
+ * $Header: /cvsroot/bitweaver/_bit_wiki/index.php,v 1.10 2006/12/23 16:43:49 squareing Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
- * $Id: index.php,v 1.9 2006/08/29 13:00:26 squareing Exp $
+ * $Id: index.php,v 1.10 2006/12/23 16:43:49 squareing Exp $
* @package wiki
* @subpackage functions
*/
@@ -18,12 +18,7 @@
*/
require_once( '../bit_setup_inc.php' );
-if (!defined('WIKI_PKG_PATH')) {
- // need a module not active error message here and an exit
- // need to make better than this:
- echo "Wiki Module is not Active";
- exit;
-}
+$gBitSystem->verifyPackage( 'wiki' );
require_once( WIKI_PKG_PATH.'BitPage.php' );
if( !empty( $_REQUEST['structure_id'] ) ) {
@@ -33,10 +28,10 @@ if( !empty( $_REQUEST['structure_id'] ) ) {
$_REQUEST['page'] = $gBitSystem->getConfig( 'wiki_home_page', 'HomePage' );
}
$gHome = new BitPage();
- $wikiHome = $gBitSystem->getConfig("wiki_home_page", 'HomePage');
- if( !($gHome->pageExists( $wikiHome )) ) {
+ $wikiHome = $gBitSystem->getConfig( "wiki_home_page", 'HomePage' );
+ if( !($gHome->pageExists( $wikiHome ) ) ) {
$homeHash = array(
- 'title' => (isset( $wikiHome ) ? $wikiHome : 'HomePage'),
+ 'title' => ( isset( $wikiHome ) ? $wikiHome : 'HomePage' ),
'creator_user_id' => ROOT_USER_ID,
'modifier_user_id' => ROOT_USER_ID,
'edit' => 'Welcome to '.( $gBitSystem->getConfig( 'site_title', 'our site' ) ) );