Skip to content

Commit

Permalink
Merge pull request #124 from benr77/undefined-variable-currentAddress
Browse files Browse the repository at this point in the history
Fix for Undefined Variable: $currentAddress
  • Loading branch information
tedivm committed Jun 7, 2015
2 parents 02af109 + 6ad63d3 commit 6a794a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fetch/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -647,8 +647,8 @@ protected function processAddressObject($addresses)
if (isset($address->personal)) {
$currentAddress['name'] = $address->personal;
}
$outputAddresses[] = $currentAddress;
}
$outputAddresses[] = $currentAddress;
}

return $outputAddresses;
Expand Down

0 comments on commit 6a794a7

Please sign in to comment.