diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-08-03 00:02:08 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-08-03 00:02:08 +0000 |
commit | e84bf795a484c1546a28ec4016a3916a49c06a29 (patch) | |
tree | 6b916ffe43dc0df8d7a148c7418e04b04cfd0204 /phpBB/admin/admin_forum_prune.php | |
parent | 077d7a765167d8229436d1f043dd5588924d2104 (diff) | |
download | forums-e84bf795a484c1546a28ec4016a3916a49c06a29.tar forums-e84bf795a484c1546a28ec4016a3916a49c06a29.tar.gz forums-e84bf795a484c1546a28ec4016a3916a49c06a29.tar.bz2 forums-e84bf795a484c1546a28ec4016a3916a49c06a29.tar.xz forums-e84bf795a484c1546a28ec4016a3916a49c06a29.zip |
Major screwups ;(
git-svn-id: file:///svn/phpbb/trunk@800 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/admin_forum_prune.php')
-rw-r--r-- | phpBB/admin/admin_forum_prune.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/phpBB/admin/admin_forum_prune.php b/phpBB/admin/admin_forum_prune.php index d0a4d92e30..6a5883330a 100644 --- a/phpBB/admin/admin_forum_prune.php +++ b/phpBB/admin/admin_forum_prune.php @@ -43,6 +43,7 @@ if( $setmodules == 1 ) // Include required files, get $phpEx and check permissions // require('pagestart.inc'); +include($phpbb_root_path . 'includes/prune.php'); // // Get the forum ID for pruning @@ -99,8 +100,6 @@ if($submit == "Prune") $prunesecs = $prunedays * 1440 * 60; $prunedate = time() - $prunesecs; - include('page_header_admin.'.$phpEx); - $template->set_filenames(array( "body" => "admin/forum_prune_result_body.tpl") ); @@ -132,8 +131,6 @@ else // // Output a selection table if no forum id has been specified. // - include('page_header_admin.'.$phpEx); - $template->set_filenames(array( "body" => "admin/forum_prune_select_body.tpl") ); @@ -160,8 +157,6 @@ else // // Output the form to retrieve Prune information. // - include('page_header_admin.'.$phpEx); - $template->set_filenames(array( "body" => "admin/forum_prune_body.tpl") ); |