summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2008-06-25 22:21:24 +0000
committerChristian Fowler <spider@viovio.com>2008-06-25 22:21:24 +0000
commit2534dfdca4a1b9c1b59b2da0e3045671fdb2c483 (patch)
tree69bf95ad631555cf3dffcf1eb3589027969ee1e7 /index.php
parent60c0a21ac8fcbef0f8890f1809b7385b313fcfa4 (diff)
downloadstats-2534dfdca4a1b9c1b59b2da0e3045671fdb2c483.tar.gz
stats-2534dfdca4a1b9c1b59b2da0e3045671fdb2c483.tar.bz2
stats-2534dfdca4a1b9c1b59b2da0e3045671fdb2c483.zip
change display call to use a hash for display options, add display_mode to options hash
Diffstat (limited to 'index.php')
-rw-r--r--index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/index.php b/index.php
index 1fb0f07..e2c2bce 100644
--- a/index.php
+++ b/index.php
@@ -1,8 +1,8 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_stats/index.php,v 1.7 2007/06/22 12:35:26 squareing Exp $
+ * $Header: /cvsroot/bitweaver/_bit_stats/index.php,v 1.8 2008/06/25 22:21:24 spiderr Exp $
*
- * $Id: index.php,v 1.7 2007/06/22 12:35:26 squareing Exp $
+ * $Id: index.php,v 1.8 2008/06/25 22:21:24 spiderr Exp $
* @package stats
* @subpackage functions
*/
@@ -22,5 +22,5 @@ $gBitSmarty->assign( 'siteStats', $gStats->getSiteStats() );
$gBitSmarty->assign( 'contentOverview', $gStats->getContentOverview( $_REQUEST ));
$gBitSmarty->assign( 'contentStats', $gStats->getContentStats() );
-$gBitSystem->display( 'bitpackage:stats/stats.tpl', tra( "Statistics" ) );
+$gBitSystem->display( 'bitpackage:stats/stats.tpl', tra( "Statistics" ) , array( 'display_mode' => 'display' ));
?>