File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ 1.1.5] - 2019-04-15
8+ ### Fixed
9+ - Finally fix the element index UTF8 issue.
10+
711## [ 1.1.4] - 2019-04-01
812### Fixed
913- Fix utf8 issue
Original file line number Diff line number Diff line change 1515use craft \base \Element ;
1616use craft \elements \actions \Delete ;
1717use craft \elements \db \ElementQueryInterface ;
18+ use craft \helpers \StringHelper ;
1819use craft \helpers \UrlHelper ;
1920use rias \contactformextensions \elements \db \ContactFormSubmissionQuery ;
2021
@@ -182,7 +183,8 @@ public function getTableAttributeHtml(string $attribute): string
182183 }
183184 $ html .= '</ul> ' ;
184185
185- return $ html ;
186+
187+ return StringHelper::convertToUtf8 ($ html );
186188 }
187189
188190 return parent ::getTableAttributeHtml ($ attribute ); // TODO: Change the autogenerated stub
You can’t perform that action at this time.
0 commit comments