aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2002-01-03 22:32:37 +0000
committerthe_systech <the_systech@users.sourceforge.net>2002-01-03 22:32:37 +0000
commitb5fbcbbdaaf8b3f415e6bb88190e4768b61707dc (patch)
tree585f0e2959fa67ec46f937468fdc1ad9b7e91cb5
parent89a33df60230b92a3f62b2fd35a684d0728b1411 (diff)
downloadforums-b5fbcbbdaaf8b3f415e6bb88190e4768b61707dc.tar
forums-b5fbcbbdaaf8b3f415e6bb88190e4768b61707dc.tar.gz
forums-b5fbcbbdaaf8b3f415e6bb88190e4768b61707dc.tar.bz2
forums-b5fbcbbdaaf8b3f415e6bb88190e4768b61707dc.tar.xz
forums-b5fbcbbdaaf8b3f415e6bb88190e4768b61707dc.zip
Paul didn't quite get ALL changed to -1 everywhere it was necessary.. Fixed now.
git-svn-id: file:///svn/phpbb/trunk@1789 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/admin/admin_forum_prune.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_forum_prune.php b/phpBB/admin/admin_forum_prune.php
index cf2be4dd93..355e75a4a9 100644
--- a/phpBB/admin/admin_forum_prune.php
+++ b/phpBB/admin/admin_forum_prune.php
@@ -54,7 +54,7 @@ if( isset($HTTP_GET_VARS[POST_FORUM_URL]) || isset($HTTP_POST_VARS[POST_FORUM_UR
{
$forum_id = ( isset($HTTP_POST_VARS[POST_FORUM_URL]) ) ? $HTTP_POST_VARS[POST_FORUM_URL] : $HTTP_GET_VARS[POST_FORUM_URL];
- if( $forum_id == "ALL" )
+ if( $forum_id == -1 )
{
$forum_sql = "";
}
@@ -203,4 +203,4 @@ $template->pparse("body");
include('page_footer_admin.'.$phpEx);
-?> \ No newline at end of file
+?>