fix use of unset (php3)

This commit is contained in:
Miles Lott 2001-12-26 16:59:51 +00:00
parent 81a5b54d6f
commit a47351e0ec

View File

@ -109,7 +109,8 @@
$reversed_array[$value] = $key;
}
}
unset($key, $value);
@unset($key);
@unset($value);
while(list($key,$value) = each($reversed_array))
{
$new_array[$key] = $value;