diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-12-03 22:54:32 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-12-03 22:54:32 +0000 |
commit | 0d649f6290e5f45c8a487f8c471bf02afe2d8337 (patch) | |
tree | f0253d73b1072d6f77c2dde4cf04fb46b932c7c0 /phpBB/admin | |
parent | 5c5dd8c7987ca8484772f2251b07247a2a4c960c (diff) | |
download | forums-0d649f6290e5f45c8a487f8c471bf02afe2d8337.tar forums-0d649f6290e5f45c8a487f8c471bf02afe2d8337.tar.gz forums-0d649f6290e5f45c8a487f8c471bf02afe2d8337.tar.bz2 forums-0d649f6290e5f45c8a487f8c471bf02afe2d8337.tar.xz forums-0d649f6290e5f45c8a487f8c471bf02afe2d8337.zip |
Keep it from complaining if it can't reset the array #@#ed arrays
git-svn-id: file:///svn/phpbb/trunk@1506 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin')
-rw-r--r-- | phpBB/admin/admin_forum_prune.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_forum_prune.php b/phpBB/admin/admin_forum_prune.php index 1ac6f877fb..eb6333f98b 100644 --- a/phpBB/admin/admin_forum_prune.php +++ b/phpBB/admin/admin_forum_prune.php @@ -97,7 +97,7 @@ if( isset($HTTP_POST_VARS['doprune']) ) ); $i = 0; - reset($forum_rows); + @reset($forum_rows); while(list(, $forum_data) = each ($forum_rows)) { $p_result = prune($forum_data['forum_id'], $prunedate); @@ -201,4 +201,4 @@ $template->pparse("body"); include('page_footer_admin.'.$phpEx); -?>
\ No newline at end of file +?> |