summaryrefslogtreecommitdiff
path: root/users.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-08-01 18:41:26 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-08-01 18:41:26 +0000
commita7d09f5dee475af4717cb69fcc29206d940d23ee (patch)
tree487b8199b6de2456ff0b4ba555a08db1375d2c48 /users.php
parentf3b09137eb3dec51e92663b63cbf8d758389e673 (diff)
downloadstats-a7d09f5dee475af4717cb69fcc29206d940d23ee.tar.gz
stats-a7d09f5dee475af4717cb69fcc29206d940d23ee.tar.bz2
stats-a7d09f5dee475af4717cb69fcc29206d940d23ee.zip
merge recent changes with HEAD - R1 and HEAD are identical now
Diffstat (limited to 'users.php')
-rw-r--r--users.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/users.php b/users.php
index 7c9c587..aafbde9 100644
--- a/users.php
+++ b/users.php
@@ -1,12 +1,12 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_stats/users.php,v 1.2 2005/07/17 17:36:17 squareing Exp $
+ * $Header: /cvsroot/bitweaver/_bit_stats/users.php,v 1.3 2005/08/01 18:41:26 squareing Exp $
*
* Copyright (c) 2005 bitweaver.org
* 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: users.php,v 1.2 2005/07/17 17:36:17 squareing Exp $
+ * $Id: users.php,v 1.3 2005/08/01 18:41:26 squareing Exp $
* @package stats
* @subpackage functions
*/
@@ -35,11 +35,11 @@ switch( $_REQUEST["period"] ) {
$periodName = 'Daily';
break;
}
-$smarty->assign( 'periodName', $periodName );
+$gBitSmarty->assign( 'periodName', $periodName );
$stats = $statslib->registrationStats( $_REQUEST["period"] );
-$smarty->assign_by_ref( 'userStats', $stats );
+$gBitSmarty->assign_by_ref( 'userStats', $stats );
// Display the template
$gBitSystem->display( 'bitpackage:stats/user_stats.tpl');