1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Updates to use new plugin specific prefs. Change file headers as well.

This commit is contained in:
mcfly
2010-03-10 01:23:57 +00:00
parent a62ec69609
commit bf1c62d6fe
23 changed files with 135 additions and 164 deletions

View File

@@ -8,14 +8,14 @@
*
*
*
* $Source: /cvs_backup/e107_0.8/e107_plugins/forum/forum_stats.php,v $
* $Revision$
* $Date$
* $Author$
* $URL$
* $Id$
*/
require_once('../../class2.php');
//TODO: Investigate the queries used here
include_lan(e_PLUGIN.'forum/languages/'.e_LANGUAGE.'/lan_forum_stats.php');
require_once(e_PLUGIN.'forum/forum_class.php');
$gen = new convert;
@@ -27,8 +27,8 @@ $bar = (file_exists(THEME.'images/bar.png') ? THEME.'images/bar.png' : e_PLUGIN.
require_once(HEADERF);
$total_posts = $sql -> db_Count('forum_post');
$total_topics = $sql -> db_Count('forum_thread');
$total_posts = $sql->db_Count('forum_post');
$total_topics = $sql->db_Count('forum_thread');
$total_replies = $total_posts - $total_topics;
$total_views = 0;
$query = 'SELECT sum(thread_views) AS total FROM `#forum_thread` ';