phpbb/phpBB/admin/admin_forums.php
Bart van Bragt 384371cdc7 Start of the admin frontend
git-svn-id: file:///svn/phpbb/trunk@639 89ea8834-ac86-4346-8a33-228a782c2dd0
2001-07-13 14:16:11 +00:00

39 lines
1.5 KiB
PHP

<?php
/***************************************************************************
*
* -------------------
* begin : Thursday, Jul 12, 2001
* 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.
*
*
***************************************************************************/
if($setmodules==1)
{
$filename = basename(__FILE__);
$module['forums']['add'] = "$filename?mode=add";
$module['forums']['edit'] = "$filename?mode=edit";
$module['forums']['delete'] = "$filename?mode=delete";
return;
}
print "Got past the \$setmodules check<br>\n";
print "Requested action was: $mode<br>\n";
?>