summaryrefslogtreecommitdiff
path: root/lookup_page_inc.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-04-14 19:36:19 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-04-14 19:36:19 +0000
commit6bc7884f038f3d4a8c44caf3fd8a6040428fed57 (patch)
treedf2df6a4ecc1b26befc768ddc22de64e9960bae5 /lookup_page_inc.php
parent280955f602e216d88b973a361ca33da84d9d0a66 (diff)
downloadwiki-6bc7884f038f3d4a8c44caf3fd8a6040428fed57.tar.gz
wiki-6bc7884f038f3d4a8c44caf3fd8a6040428fed57.tar.bz2
wiki-6bc7884f038f3d4a8c44caf3fd8a6040428fed57.zip
change wiki kernel preference names to be standard compliant
Diffstat (limited to 'lookup_page_inc.php')
-rw-r--r--lookup_page_inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lookup_page_inc.php b/lookup_page_inc.php
index 1626553..ee2af32 100644
--- a/lookup_page_inc.php
+++ b/lookup_page_inc.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_wiki/lookup_page_inc.php,v 1.14 2006/03/01 20:16:36 spiderr Exp $
+ * $Header: /cvsroot/bitweaver/_bit_wiki/lookup_page_inc.php,v 1.15 2006/04/14 19:36:19 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: lookup_page_inc.php,v 1.14 2006/03/01 20:16:36 spiderr Exp $
+ * $Id: lookup_page_inc.php,v 1.15 2006/04/14 19:36:19 squareing Exp $
* @package wiki
* @subpackage functions
*/
@@ -112,7 +112,7 @@
parse_str($purl["query"], $purlquery);
// When WIKI_PKG_URL.'edit.php' is loading, check to see if there is an editing conflict
- if( $gBitUser->hasSemaphoreConflict( $gContent->mContentId, $gBitSystem->getConfig( 'warn_on_edit_time' ) * 60 ) ) {
+ if( $gBitUser->hasSemaphoreConflict( $gContent->mContentId, $gBitSystem->getConfig( 'wiki_warn_on_edit_time' ) * 60 ) ) {
$gBitSmarty->assign('editpageconflict', 'y');
} else {
if (!(isset($_REQUEST['save'])) && $gContent->isValid() ) {
@@ -122,7 +122,7 @@
}
}
- if( $semUser = $gBitUser->hasSemaphoreConflict( $gContent->mContentId, $gBitSystem->getConfig( 'warn_on_edit_time' ) * 60 ) ) {
+ if( $semUser = $gBitUser->hasSemaphoreConflict( $gContent->mContentId, $gBitSystem->getConfig( 'wiki_warn_on_edit_time' ) * 60 ) ) {
$gContent->mErrors['edit_conflict'] = 'This page is being edited by '.$gBitUser->getDisplayName( TRUE, $semUser ).'. Proceed at your own peril';
$gBitSmarty->assign( 'semUser', $semUser );
$beingedited = 'y';