mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 16:33:17 +01:00
quieten warning regarding foreach on POST->destination
This commit is contained in:
parent
97a91b82a5
commit
a981c31afd
@ -100,7 +100,7 @@
|
||||
{
|
||||
$formData['identity'] = (int)$_POST['identity'];
|
||||
|
||||
foreach($_POST['destination'] as $key => $destination) {
|
||||
foreach((array)$_POST['destination'] as $key => $destination) {
|
||||
if(!empty($_POST['address'][$key])) {
|
||||
if($destination == 'folder') {
|
||||
$formData[$destination][] = $GLOBALS['egw']->translation->convert($_POST['address'][$key], $this->charset, 'UTF7-IMAP');
|
||||
|
Loading…
Reference in New Issue
Block a user