Update of /cvsroot/mxbb/mx_act
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7425/modules/mx_act
Modified Files:
db_install.php db_uninstall.php db_upgrade.php
Log Message:
updating
Index: db_uninstall.php
===================================================================
RCS file: /cvsroot/mxbb/mx_act/db_uninstall.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** db_uninstall.php 16 Jan 2005 01:00:56 -0000 1.4
--- db_uninstall.php 22 Sep 2005 10:07:30 -0000 1.5
***************
*** 2,12 ****
/**
* * ------------------------------------------------------------------------
! * subject : mx-portal, CMS & portal
* begin : june, 2002
! * copyright : (C) 2002-2005 MX-System
* email : jon...@ho...
* project site : www.mx-system.com
*
- * description :
* -------------------------------------------------------------------------
*
--- 2,11 ----
/**
* * ------------------------------------------------------------------------
! * subject : mxBB-Portal - CMS & portal
* begin : june, 2002
! * copyright : (C) 2002-2005 mxBB-Portal
* email : jon...@ho...
* project site : www.mx-system.com
*
* -------------------------------------------------------------------------
*
***************
*** 24,28 ****
if ( !defined( 'IN_ADMIN' ) )
{
! $mx_root_path = '../../';
include( $mx_root_path . 'extension.inc' );
include( $mx_root_path . 'common.' . $phpEx );
--- 23,27 ----
if ( !defined( 'IN_ADMIN' ) )
{
! $mx_root_path = './../../';
include( $mx_root_path . 'extension.inc' );
include( $mx_root_path . 'common.' . $phpEx );
***************
*** 33,42 ****
if ( !$userdata['session_logged_in'] )
{
! die( "Hacking attempt(3)" );
}
if ( $userdata['user_level'] != ADMIN )
{
! die( "Hacking attempt(4)" );
}
// End session management
--- 32,41 ----
if ( !$userdata['session_logged_in'] )
{
! die( "Hacking attempt(1)" );
}
if ( $userdata['user_level'] != ADMIN )
{
! die( "Hacking attempt(2)" );
}
// End session management
***************
*** 62,71 ****
);
- $message .= mx_do_install_upgrade( $sql );
-
echo "<br /><br />";
echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">";
echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstalling Information - module specific db tables</th></tr>";
! echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>";
echo "</table><br />";
--- 61,68 ----
);
echo "<br /><br />";
echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">";
echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstalling Information - module specific db tables</th></tr>";
! echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . mx_do_install_upgrade( $sql ) . "</span></td></tr>";
echo "</table><br />";
Index: db_install.php
===================================================================
RCS file: /cvsroot/mxbb/mx_act/db_install.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** db_install.php 18 Mar 2005 21:32:23 -0000 1.7
--- db_install.php 22 Sep 2005 10:07:30 -0000 1.8
***************
*** 2,12 ****
/**
* * ------------------------------------------------------------------------
! * subject : mx-portal, CMS & portal
* begin : june, 2002
! * copyright : (C) 2002-2005 MX-System
* email : jon...@ho...
* project site : www.mx-system.com
*
- * description :
* -------------------------------------------------------------------------
*
--- 2,11 ----
/**
* * ------------------------------------------------------------------------
! * subject : mxBB-Portal - CMS & portal
* begin : june, 2002
! * copyright : (C) 2002-2005 mxBB-Portal
* email : jon...@ho...
* project site : www.mx-system.com
*
* -------------------------------------------------------------------------
*
***************
*** 22,25 ****
--- 21,44 ----
define( 'IN_PORTAL', true );
+ if ( !defined( 'IN_ADMIN' ) )
+ {
+ $mx_root_path = './../../';
+ include( $mx_root_path . 'extension.inc' );
+ include( $mx_root_path . 'common.' . $phpEx );
+ // Start session management
+ $userdata = session_pagestart( $user_ip, PAGE_INDEX );
+ mx_init_userprefs( $userdata );
+
+ if ( !$userdata['session_logged_in'] )
+ {
+ die( "Hacking attempt(1)" );
+ }
+
+ if ( $userdata['user_level'] != ADMIN )
+ {
+ die( "Hacking attempt(2)" );
+ }
+ // End session management
+ }
$mx_module_version = 'mxBB Activity Mod Module v. 1.0.0';
Index: db_upgrade.php
===================================================================
RCS file: /cvsroot/mxbb/mx_act/db_upgrade.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** db_upgrade.php 6 Mar 2005 01:11:40 -0000 1.7
--- db_upgrade.php 22 Sep 2005 10:07:30 -0000 1.8
***************
*** 2,12 ****
/**
* * ------------------------------------------------------------------------
! * subject : mx-portal, CMS & portal
* begin : june, 2002
! * copyright : (C) 2002-2005 MX-System
* email : jon...@ho...
* project site : www.mx-system.com
*
- * description :
* -------------------------------------------------------------------------
*
--- 2,11 ----
/**
* * ------------------------------------------------------------------------
! * subject : mxBB-Portal - CMS & portal
* begin : june, 2002
! * copyright : (C) 2002-2005 mxBB-Portal
* email : jon...@ho...
* project site : www.mx-system.com
*
* -------------------------------------------------------------------------
*
***************
*** 22,32 ****
define( 'IN_PORTAL', true );
-
- $mx_module_version = 'mxBB Activity Mod Module v. 1.0.0';
- $mx_module_copy = 'Based on Activity Mod by Napoleon/aUsTiN-Inc/Jon © 2002-2004 <a href="http://www.phpbb.com/phpBB/viewtopic.php?t=203074" target="_phpbb">PHPBB.com MOD</a>';
-
if ( !defined( 'IN_ADMIN' ) )
{
! $mx_root_path = '../../';
include( $mx_root_path . 'extension.inc' );
include( $mx_root_path . 'common.' . $phpEx );
--- 21,27 ----
define( 'IN_PORTAL', true );
if ( !defined( 'IN_ADMIN' ) )
{
! $mx_root_path = './../../';
include( $mx_root_path . 'extension.inc' );
include( $mx_root_path . 'common.' . $phpEx );
***************
*** 37,49 ****
if ( !$userdata['session_logged_in'] )
{
! die( "Hacking attempt(3)" );
}
if ( $userdata['user_level'] != ADMIN )
{
! die( "Hacking attempt(4)" );
}
// End session management
}
define( "iNA_CONFIG", $mx_table_prefix . 'ina_config' );
--- 32,48 ----
if ( !$userdata['session_logged_in'] )
{
! die( "Hacking attempt(1)" );
}
if ( $userdata['user_level'] != ADMIN )
{
! die( "Hacking attempt(2)" );
}
// End session management
}
+
+ $mx_module_version = 'mxBB Activity Mod Module v. 1.0.0';
+ $mx_module_copy = 'Based on Activity Mod by Napoleon/aUsTiN-Inc/Jon © 2002-2004 <a href="http://www.phpbb.com/phpBB/viewtopic.php?t=203074" target="_phpbb">PHPBB.com MOD</a>';
+
define( "iNA_CONFIG", $mx_table_prefix . 'ina_config' );
|