-
-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #274 - Fix Views HTML Entities Which Encode UTF Characters Incorrectly #403 #501
base: hotfix
Are you sure you want to change the base?
Conversation
@@ -322,6 +322,10 @@ public function fetch( | |||
$listData[$key]['assigned_user_name']['user_name'] = $user->user_name ?? ''; | |||
$listData[$key]['assigned_user_name']['user_id'] = $record['assigned_user_id']; | |||
$listData[$key]['module_name'] = $panelToModuleName[$listData[$key]['panel_name']]; | |||
$listData[$key]['descrition'] = html_entity_decode($listData[$key]['descrition'] ?? '', ENT_QUOTES); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this really descrition
instead of description
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo has been fixed.
6b94b52
to
ff1ed1d
Compare
I tested this solution on version 8.7.1, and it doesn't work for the description fields. |
This fix doesn't work for me. No errors but errors in accented characters remains... |
Description
See the issue #274 for more details about the issue.
This is the second commit of #403.
Motivation and Context
How To Test This
a. For example, change the company name that is referenced in a Call. (Like adding åäö or other letters)
Types of changes
Final checklist