Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed #3863 (#3865)
  • Loading branch information
Guite committed Dec 2, 2017
1 parent 6ac243f commit 85fd227
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-1.5.md
Expand Up @@ -9,6 +9,7 @@ CHANGELOG - ZIKULA 1.5.x
- Corrected Category API to properly get the category by path (#3852).
- Disabled CSRF protection for search results (#3831).
- Allowing audio files with the .mp3 and .wav extensions to be accessible via the modules and themes folders. (#3858).
- Fixed logical issue in Users module's mass mailing helper (#3863).

- Vendor updates:
- composer/ca-bundle updated from 1.0.8 to 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion src/system/UsersModule/Helper/MailHelper.php
Expand Up @@ -191,7 +191,7 @@ public function createAndSendUserMail(UserEntity $userEntity, $userNotification
*/
public function mailUsers(array $users, array $messageData)
{
$mailSent = false;
$mailSent = true;
$message = \Swift_Message::newInstance();
$message->setFrom([$messageData['replyto'] => $messageData['from']]);
if (1 == count($users)) {
Expand Down

0 comments on commit 85fd227

Please sign in to comment.