Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Rias committed Apr 1, 2019
1 parent 2e5a4f9 commit 83fe865
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.1.4] - 2019-04-01
### Fixed
- Fix utf8 issue

## [1.1.3] - 2019-04-01
### Fixed
- Fix overriding `toEmail`
Expand Down
2 changes: 1 addition & 1 deletion src/services/ContactFormExtensionsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function saveSubmission(Submission $submission)
$contactFormSubmission->subject = $submission->subject;

if (!is_array($submission->message)) {
$submission->message = ['message' => $this->utf8AllTheThings($submission->message)];
$submission->message = ['message' => $this->utf8Value($submission->message)];
}

$message = $this->utf8AllTheThings($submission->message);
Expand Down

0 comments on commit 83fe865

Please sign in to comment.