fix wrong variable name typo, fixes #484

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2017-11-06 07:36:51 +01:00
parent 421c29c491
commit dd3e5e9c6b

View File

@@ -324,7 +324,7 @@ if ($page == 'overview') {
$forwarders = ''; $forwarders = '';
$forwarders_count = 0; $forwarders_count = 0;
foreach ($row['destination'] as $dest_id => $destination) { foreach ($result['destination'] as $dest_id => $destination) {
$destination = $idna_convert->decode($destination); $destination = $idna_convert->decode($destination);
if ($destination != $result['email_full'] && $destination != '') { if ($destination != $result['email_full'] && $destination != '') {