|
From: OryNider <ory...@us...> - 2008-03-13 08:28:01
|
Update of /cvsroot/mxbb/mx_smartor In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22730 Modified Files: Tag: core28x album.php album_lists.php db_install.php db_uninstall.php db_upgrade.php hierarchy_db_migrate.php mx_install_readme.htm welcome.php Log Message: update for new mx_mod 2.8.2 Index: album.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album.php,v retrieving revision 1.17.2.9 retrieving revision 1.17.2.10 diff -C2 -d -r1.17.2.9 -r1.17.2.10 *** album.php 13 Mar 2008 03:26:14 -0000 1.17.2.9 --- album.php 13 Mar 2008 08:27:26 -0000 1.17.2.10 *************** *** 36,40 **** $phpEx = substr(strrchr(__FILE__, '.'), 1); ! if ( !defined('PORTAL_BACKEND') && @file_exists( './viewtopic.' . $phpEx ) ) // -------------------------------------------- phpBB MOD MODE { define('MXBB_MODULE', false); --- 36,40 ---- $phpEx = substr(strrchr(__FILE__, '.'), 1); ! if (@file_exists( './viewtopic.' . $phpEx )) // -------------------------------------------- phpBB MOD MODE { define('MXBB_MODULE', false); *************** *** 362,366 **** include($album_root_path. 'modules/album_personal_random.'.$phpEx); } ! else if( !is_object($mx_block)) { die("Hacking attempt"); --- 362,366 ---- include($album_root_path. 'modules/album_personal_random.'.$phpEx); } ! else if(!is_object($mx_block) && MXBB_MODULE) { die("Hacking attempt"); Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_upgrade.php,v retrieving revision 1.15.2.6 retrieving revision 1.15.2.7 diff -C2 -d -r1.15.2.6 -r1.15.2.7 *** db_upgrade.php 13 Mar 2008 03:26:24 -0000 1.15.2.6 --- db_upgrade.php 13 Mar 2008 08:27:26 -0000 1.15.2.7 *************** *** 30,34 **** } ! $mx_module_version = '2.0.1'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; --- 30,34 ---- } ! $mx_module_version = '2.0.2'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_install.php,v retrieving revision 1.15.2.6 retrieving revision 1.15.2.7 diff -C2 -d -r1.15.2.6 -r1.15.2.7 *** db_install.php 13 Mar 2008 03:26:18 -0000 1.15.2.6 --- db_install.php 13 Mar 2008 08:27:26 -0000 1.15.2.7 *************** *** 32,36 **** } ! $mx_module_version = '2.0.1'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; --- 32,36 ---- } ! $mx_module_version = '2.0.2'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; |