Skip to content

Commit 83fe865

Browse files
author
Rias
committed
1.1.4
1 parent 2e5a4f9 commit 83fe865

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

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

7+
## [1.1.4] - 2019-04-01
8+
### Fixed
9+
- Fix utf8 issue
10+
711
## [1.1.3] - 2019-04-01
812
### Fixed
913
- Fix overriding `toEmail`

src/services/ContactFormExtensionsService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function saveSubmission(Submission $submission)
6363
$contactFormSubmission->subject = $submission->subject;
6464

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

6969
$message = $this->utf8AllTheThings($submission->message);

0 commit comments

Comments
 (0)