mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-27 13:22:06 +02:00
fix use of unset (php3)
This commit is contained in:
parent
81a5b54d6f
commit
a47351e0ec
@ -109,12 +109,13 @@
|
|||||||
$reversed_array[$value] = $key;
|
$reversed_array[$value] = $key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
unset($key, $value);
|
@unset($key);
|
||||||
|
@unset($value);
|
||||||
while(list($key,$value) = each($reversed_array))
|
while(list($key,$value) = each($reversed_array))
|
||||||
{
|
{
|
||||||
$new_array[$key] = $value;
|
$new_array[$key] = $value;
|
||||||
}
|
}
|
||||||
return $new_array;
|
return $new_array;
|
||||||
}
|
}
|
||||||
|
|
||||||
function str_repeat($input,$multiplier)
|
function str_repeat($input,$multiplier)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user