mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
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
This commit is contained in:
parent
5c5dd8c798
commit
0d649f6290
1 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ if( isset($HTTP_POST_VARS['doprune']) )
|
||||||
);
|
);
|
||||||
|
|
||||||
$i = 0;
|
$i = 0;
|
||||||
reset($forum_rows);
|
@reset($forum_rows);
|
||||||
while(list(, $forum_data) = each ($forum_rows))
|
while(list(, $forum_data) = each ($forum_rows))
|
||||||
{
|
{
|
||||||
$p_result = prune($forum_data['forum_id'], $prunedate);
|
$p_result = prune($forum_data['forum_id'], $prunedate);
|
||||||
|
|
Loading…
Add table
Reference in a new issue