mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
I hate those damn reset warnings ...
git-svn-id: file:///svn/phpbb/trunk@635 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
577e1f7099
commit
d2d6c8f0ef
1 changed files with 5 additions and 5 deletions
|
@ -227,9 +227,9 @@ if(isset($HTTP_POST_VARS['submit']) && !empty($HTTP_POST_VARS[POST_USERS_URL]))
|
|||
$valid_auth_mod = array();
|
||||
$valid_auth_mod_sql = array();
|
||||
|
||||
reset($change_mod_ary);
|
||||
@reset($change_mod_ary);
|
||||
|
||||
while(list($chg_forum_id, $value) = each($change_mod_ary))
|
||||
while(list($chg_forum_id, $value) = @each($change_mod_ary))
|
||||
{
|
||||
$a_match = $value;
|
||||
|
||||
|
@ -287,10 +287,10 @@ if(isset($HTTP_POST_VARS['submit']) && !empty($HTTP_POST_VARS[POST_USERS_URL]))
|
|||
$warning_mod = array();
|
||||
$valid_auth_acl_sql = array();
|
||||
|
||||
reset($valid_auth_mod);
|
||||
reset($change_prv_ary);
|
||||
@reset($valid_auth_mod);
|
||||
@reset($change_prv_ary);
|
||||
|
||||
while(list($chg_forum_id, $value) = each($change_prv_ary))
|
||||
while(list($chg_forum_id, $value) = @each($change_prv_ary))
|
||||
{
|
||||
$valid_auth_acl_sql[$chg_forum_id] = "";
|
||||
$auth_exists = FALSE;
|
||||
|
|
Loading…
Add table
Reference in a new issue