summaryrefslogtreecommitdiff
path: root/view_cache.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2008-06-25 22:21:12 +0000
committerChristian Fowler <spider@viovio.com>2008-06-25 22:21:12 +0000
commitfdd1438cb77fc31f2ac1854574429225e79952a8 (patch)
tree7bb3e7fd07ab1190379100be3146a76b423f156f /view_cache.php
parentc0e0f6bdbe6e0c32e7f1abadf6b0ba1e9d67b316 (diff)
downloadkernel-fdd1438cb77fc31f2ac1854574429225e79952a8.tar.gz
kernel-fdd1438cb77fc31f2ac1854574429225e79952a8.tar.bz2
kernel-fdd1438cb77fc31f2ac1854574429225e79952a8.zip
change display call to use a hash for display options, add display_mode to options hash
Diffstat (limited to 'view_cache.php')
-rw-r--r--view_cache.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/view_cache.php b/view_cache.php
index 1c97bcb..957a3d7 100644
--- a/view_cache.php
+++ b/view_cache.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_kernel/view_cache.php,v 1.9 2007/07/10 16:58:21 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_kernel/view_cache.php,v 1.10 2008/06/25 22:21:11 spiderr Exp $
* @package kernel
* @subpackage functions
*/
@@ -18,7 +18,7 @@ require_once( WIKI_PKG_PATH.'BitPage.php' );
/*
if($gBitSystem->getConfig('wiki_list_pages') != 'y') {
$gBitSmarty->assign('msg',tra("This feature is disabled"));
- $gBitSystem->display( 'error.tpl' );
+ $gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'display' ));
die;
}
*/
@@ -28,7 +28,7 @@ if (isset($_REQUEST['url'])) {
if (!$id) {
$gBitSmarty->assign('msg', tra("No cache information available"));
- $gBitSystem->display( 'error.tpl' );
+ $gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'display' ));
die;
}
@@ -38,7 +38,7 @@ if (isset($_REQUEST['url'])) {
if (!isset($_REQUEST["cache_id"])) {
$gBitSmarty->assign('msg', tra("No page indicated"));
- $gBitSystem->display( 'error.tpl' );
+ $gBitSystem->display( 'error.tpl' , NULL, array( 'display_mode' => 'display' ));
die;
}
@@ -53,7 +53,7 @@ if (substr($info["url"], -4, 4) == ".txt") {
$gBitSmarty->assign('ggcacheurl', $ggcacheurl);
$gBitSmarty->assign_by_ref('info', $info);
-$gBitSystem->display( 'bitpackage:kernel/view_cache.tpl');
+$gBitSystem->display( 'bitpackage:kernel/view_cache.tpl', NULL, array( 'display_mode' => 'display' ));