Skip to content

Commit

Permalink
pkp#5056 Windows should behave the same as other systems
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Sep 10, 2019
1 parent 2e70e5d commit aa5946c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/mail/Mail.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ function getAddressArrayString($addresses, $includeNames = true, $send = false)
$addressString .= ', ';
}

if (Core::isWindows() || empty($address['name']) || !$includeNames) {
if (empty($address['name']) || !$includeNames) {
$addressString .= $address['email'];

} else {
Expand Down

0 comments on commit aa5946c

Please sign in to comment.