|
From: Jon O. <jon...@us...> - 2008-02-15 23:53:15
|
Update of /cvsroot/mxbb/mx_pafiledb/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2029/admin Modified Files: Tag: core28x admin_pafiledb.php Log Message: Updated, sync with phpBB2 standalone usage Index: admin_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/admin/admin_pafiledb.php,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -d -r1.6.2.1 -r1.6.2.2 *** admin_pafiledb.php 28 Jan 2008 03:11:06 -0000 1.6.2.1 --- admin_pafiledb.php 15 Feb 2008 23:53:11 -0000 1.6.2.2 *************** *** 11,15 **** define( 'IN_PORTAL', true ); ! if ( file_exists( './../viewtopic.php' ) ) { define( 'IN_PHPBB', 1 ); --- 11,17 ---- define( 'IN_PORTAL', true ); ! $phpEx = substr(strrchr(__FILE__, '.'), 1); ! ! if ( @file_exists( './../viewtopic.'.$phpEx ) ) { define( 'IN_PHPBB', 1 ); *************** *** 100,103 **** --- 102,106 ---- } } + // // Get action variable other wise set it to the main |