mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-27 05:11:41 +02:00
fix use of unset (php3)
This commit is contained in:
parent
81a5b54d6f
commit
a47351e0ec
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user