|
From: OryNider <ory...@us...> - 2008-02-08 05:14:27
|
Update of /cvsroot/mxbb/mx_online_adv In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv830 Modified Files: Tag: core28x db_install.php db_uninstall.php mx_online_adv.php readme.txt Log Message: upgrade Index: mx_online_adv.php =================================================================== RCS file: /cvsroot/mxbb/mx_online_adv/mx_online_adv.php,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -C2 -d -r1.5.2.1 -r1.5.2.2 *** mx_online_adv.php 14 Jan 2008 13:04:37 -0000 1.5.2.1 --- mx_online_adv.php 8 Feb 2008 05:14:22 -0000 1.5.2.2 *************** *** 2,6 **** /** * ! * @package mxBB Portal Module - mx_online_adv * @version $Id$ * @copyright (c) 2006 [Horace, OryNider] mxBB Development Team --- 2,6 ---- /** * ! * @package Mx-Publisher Module - mx_online_adv * @version $Id$ * @copyright (c) 2006 [Horace, OryNider] mxBB Development Team *************** *** 18,24 **** include($module_root_path . 'includes/online_common.'.$phpEx); - include( $module_root_path . 'language/lang_english/lang_main.' . $phpEx ); - - // Get all remain sessions $sql = "SELECT * FROM ".ONLINE_ADV_SESSION_TABLE; --- 18,21 ---- *************** *** 425,431 **** // removing them // ! $total_posts = mx_get_db_stat('postcount'); ! $total_users = mx_get_db_stat('usercount'); ! $newest_userdata = mx_get_db_stat('newestuser'); $newest_user = $newest_userdata['username']; $newest_uid = $newest_userdata['user_id']; --- 422,428 ---- // removing them // ! $total_posts = (@function_exists( 'mx_get_db_stat' )) ? mx_get_db_stat('postcount') : phpBB2::get_db_stat('postcount'); ! $total_users = (@function_exists( 'mx_get_db_stat' )) ? mx_get_db_stat('usercount') : phpBB2::get_db_stat('usercount'); ! $newest_userdata = (@function_exists( 'mx_get_db_stat' )) ? mx_get_db_stat('newestuser') : phpBB2::get_db_stat('newestuser'); $newest_user = $newest_userdata['username']; $newest_uid = $newest_userdata['user_id']; Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_online_adv/db_install.php,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** db_install.php 28 Jun 2007 16:56:18 -0000 1.4 --- db_install.php 8 Feb 2008 05:14:22 -0000 1.4.2.1 *************** *** 2,6 **** /** * ! * @package mxBB Portal Module - mx_online_adv * @version $Id$ * @copyright (c) 2006 [Horace, OryNider] mxBB Development Team --- 2,6 ---- /** * ! * @package Mx-Publisher Module - mx_online_adv * @version $Id$ * @copyright (c) 2006 [Horace, OryNider] mxBB Development Team Index: readme.txt =================================================================== RCS file: /cvsroot/mxbb/mx_online_adv/readme.txt,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** readme.txt 26 Jun 2007 16:39:41 -0000 1.2 --- readme.txt 8 Feb 2008 05:14:22 -0000 1.2.2.1 *************** *** 1,8 **** /********************************************************************************\ | ! | subject : mx-portal, CMS & portal, module | name : mx_online | copyright : (C) 2002-2005 MX-System ! | mxBB project site : www.mx-system.com | | --- 1,8 ---- /********************************************************************************\ | ! | subject : mx-publisher, CMS & portal, module | name : mx_online | copyright : (C) 2002-2005 MX-System ! | mxBB project site : www.mx-publisher.com | | *************** *** 10,14 **** | Who is Online Advance statistics. | ! | author : mxBB-Development Team | (see additional credit below) | --- 10,14 ---- | Who is Online Advance statistics. | ! | author : MXP-Development Team | (see additional credit below) | Index: db_uninstall.php =================================================================== RCS file: /cvsroot/mxbb/mx_online_adv/db_uninstall.php,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** db_uninstall.php 26 Jun 2007 16:39:41 -0000 1.2 --- db_uninstall.php 8 Feb 2008 05:14:22 -0000 1.2.2.1 *************** *** 2,6 **** /** * ! * @package mxBB Portal Module - mx_online_adv * @version $Id$ * @copyright (c) 2006 [Horace, OryNider] mxBB Development Team --- 2,6 ---- /** * ! * @package Mx-Publisher Module - mx_online_adv * @version $Id$ * @copyright (c) 2006 [Horace, OryNider] mxBB Development Team |