summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvie Greverend <sylvieg@users.sourceforge.net>2006-06-13 15:27:27 +0000
committerSylvie Greverend <sylvieg@users.sourceforge.net>2006-06-13 15:27:27 +0000
commit89e63a0bb9767b1b5398613e06eb8a773b2de56c (patch)
tree716c7aae273b12b41f4b3d14544a5dbae32e5462
parent5596c00ea5e3184456ea4bbf0aca48b107d6c379 (diff)
downloadstats-89e63a0bb9767b1b5398613e06eb8a773b2de56c.tar.gz
stats-89e63a0bb9767b1b5398613e06eb8a773b2de56c.tar.bz2
stats-89e63a0bb9767b1b5398613e06eb8a773b2de56c.zip
tidbits_user_bookmarks_urls->tidbits_bookmarks_urls
-rw-r--r--stats_lib.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/stats_lib.php b/stats_lib.php
index 3ac8747..d30aaaa 100644
--- a/stats_lib.php
+++ b/stats_lib.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_stats/Attic/stats_lib.php,v 1.23 2006/03/25 15:40:20 spiderr Exp $
+ * $Header: /cvsroot/bitweaver/_bit_stats/Attic/stats_lib.php,v 1.24 2006/06/13 15:27:27 sylvieg 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: stats_lib.php,v 1.23 2006/03/25 15:40:20 spiderr Exp $
+ * $Id: stats_lib.php,v 1.24 2006/06/13 15:27:27 sylvieg Exp $
* @package stats
*/
@@ -288,7 +288,7 @@ class StatsLib extends BitBase {
$stats = array();
$stats["users"] = $this->mDb->getOne("select count(*) from `".BIT_DB_PREFIX."users_users`",array());
if( $gBitSystem->isPackageActive( 'tidbits' ) ) {
- $stats["bookmarks"] = $this->mDb->getOne("select count(*) from `".BIT_DB_PREFIX."tidbits_user_bookmarks_urls`",array());
+ $stats["bookmarks"] = $this->mDb->getOne("select count(*) from `".BIT_DB_PREFIX."tidbits_bookmarks_urls`",array());
$stats["bpu"] = ($stats["users"] ? $stats["bookmarks"] / $stats["users"] : 0);
}
return $stats;