diff options
Diffstat (limited to 'phpBB/admin/admin_forums.php')
| -rw-r--r-- | phpBB/admin/admin_forums.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/phpBB/admin/admin_forums.php b/phpBB/admin/admin_forums.php index b4278d1182..87c7eec98e 100644 --- a/phpBB/admin/admin_forums.php +++ b/phpBB/admin/admin_forums.php @@ -2,7 +2,7 @@ /*************************************************************************** * * ------------------- - * begin : Saturday, Feb 13, 2001 + * begin : Thursday, Jul 12, 2001 * copyright : (C) 2001 The phpBB Group * email : support@phpbb.com * @@ -22,6 +22,18 @@ * ***************************************************************************/ +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"; + ?> |
