2001-02-17 08:37:32 +00:00
|
|
|
<?php
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* -------------------
|
2001-07-13 14:16:11 +00:00
|
|
|
* begin : Thursday, Jul 12, 2001
|
2001-02-17 08:37:32 +00:00
|
|
|
* copyright : (C) 2001 The phpBB Group
|
|
|
|
* email : support@phpbb.com
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2001-07-13 14:16:11 +00:00
|
|
|
if($setmodules==1)
|
|
|
|
{
|
2001-07-13 14:56:01 +00:00
|
|
|
$file = basename(__FILE__);
|
2001-07-13 17:03:04 +00:00
|
|
|
$module['General']['config'] = $file;
|
2001-07-13 14:56:01 +00:00
|
|
|
//$module['users']['edit'] = $file.'?mode=edit';
|
|
|
|
//$module['users']['delete'] = $file.'?mode=delete';
|
2001-07-13 17:03:04 +00:00
|
|
|
|
2001-07-13 14:56:01 +00:00
|
|
|
return;
|
2001-07-13 14:16:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
print "Got past the \$setmodules check<br>\n";
|
|
|
|
print "Requested action was: $mode<br>\n";
|
|
|
|
|
2001-07-13 17:03:04 +00:00
|
|
|
$phpbb_root_path = "./../";
|
|
|
|
include($phpbb_root_path . 'extension.inc');
|
|
|
|
include($phpbb_root_path . 'common.'.$phpEx);
|
2001-02-17 08:37:32 +00:00
|
|
|
|
|
|
|
|
2001-07-13 17:03:04 +00:00
|
|
|
?>
|