|
From: Jonathan H. <the...@us...> - 2001-12-03 22:54:35
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv14608/admin
Modified Files:
admin_forum_prune.php
Log Message:
Keep it from complaining if it can't reset the array #@#ed arrays
Index: admin_forum_prune.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_forum_prune.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** admin_forum_prune.php 2001/10/14 22:13:57 1.10
--- admin_forum_prune.php 2001/12/03 22:54:32 1.11
***************
*** 98,102 ****
$i = 0;
! reset($forum_rows);
while(list(, $forum_data) = each ($forum_rows))
{
--- 98,102 ----
$i = 0;
! @reset($forum_rows);
while(list(, $forum_data) = each ($forum_rows))
{
***************
*** 202,204 ****
include('page_footer_admin.'.$phpEx);
! ?>
\ No newline at end of file
--- 202,204 ----
include('page_footer_admin.'.$phpEx);
! ?>
|