summaryrefslogtreecommitdiff
path: root/page_history.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2007-10-03 07:00:13 +0000
committerMax Kremmel <xing@synapse.plus.com>2007-10-03 07:00:13 +0000
commit5230025096551bae4937b082e03d0bddf576b6e4 (patch)
tree9470617fd817e861c0b06d90174694bc2ecc0ce8 /page_history.php
parent8f74dae6d0fad65d7b5a14e1bee6c82060dd42c2 (diff)
downloadwiki-5230025096551bae4937b082e03d0bddf576b6e4.tar.gz
wiki-5230025096551bae4937b082e03d0bddf576b6e4.tar.bz2
wiki-5230025096551bae4937b082e03d0bddf576b6e4.zip
get rollback working again, remove trailing witespace, indent with tabs, clean up whitespace.
Diffstat (limited to 'page_history.php')
-rw-r--r--page_history.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/page_history.php b/page_history.php
index c28f327..ac1c15f 100644
--- a/page_history.php
+++ b/page_history.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_wiki/page_history.php,v 1.24 2007/09/14 17:07:20 spiderr Exp $
+ * $Header: /cvsroot/bitweaver/_bit_wiki/page_history.php,v 1.25 2007/10/03 07:00:13 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: page_history.php,v 1.24 2007/09/14 17:07:20 spiderr Exp $
+ * $Id: page_history.php,v 1.25 2007/10/03 07:00:13 squareing Exp $
* @package wiki
* @subpackage functions
*/
@@ -33,17 +33,17 @@ if( !$gContent->isValid() || empty( $gContent->mInfo ) ) {
$gContent->verifyViewPermission();
$gContent->verifyPermission( 'p_wiki_view_history' );
-$page_id = $_REQUEST['page_id'];
+// set up stuff to get history working
$smartyContentRef = 'pageInfo';
+$rollbackPerm = 'p_wiki_rollback';
include_once( LIBERTY_PKG_PATH.'content_history_inc.php' );
// pagination stuff
$gBitSmarty->assign( 'page', $page = !empty( $_REQUEST['page'] ) ? $_REQUEST['page'] : 1 );
-if ( !empty($_REQUEST['list_page']) ) {
-$gBitSmarty->assign( 'page', $page = !empty( $_REQUEST['list_page'] ) ? $_REQUEST['list_page'] : 1 );
+if( !empty( $_REQUEST['list_page'] )) {
+ $gBitSmarty->assign( 'page', $page = !empty( $_REQUEST['list_page'] ) ? $_REQUEST['list_page'] : 1 );
}
-
$offset = ( $page - 1 ) * $gBitSystem->getConfig( 'max_records' );
$history = $gContent->getHistory( NULL, NULL, $offset, $gBitSystem->getConfig( 'max_records' ) );
$gBitSmarty->assign_by_ref( 'data', $history['data'] );