Opened 16 years ago
Closed 16 years ago
#83 closed defect (fixed)
UTF8 chars get garbled in SelectionPanel
Reported by: | mbeckman | Owned by: | madair |
---|---|---|---|
Priority: | P2 | Milestone: | 1.1 |
Component: | MapGuide | Version: | 1.0.6 |
Severity: | Major | Keywords: | |
Cc: | Browser: | All | |
External ID: | Operating System: | All | |
state: | Committed |
Description
There is a problem with UTF8 chars getting garbled in the SelectionPanel. See http://www.nabble.com/Get-Garbled-in-SelectionPanel-(fusion)-to18064719.html
This can be fixed by the following.
In \WebServerExtensions\www\fusion\MapGuide\php\Utilities.php
Change row 863 from
< $value = htmlentities($value);
To
$value = htmlentities($value,ENT_COMPAT,'UTF-8');
The rownumber is from MGE2009 so it might not be exactly right.
Change History (3)
comment:1 by , 16 years ago
comment:3 by , 16 years ago
Resolution: | → fixed |
---|---|
state: | New → Committed |
Status: | new → closed |
I've applied the change and committed in trunk and the 1.0 branch.
Note:
See TracTickets
for help on using tickets.
(In [1427]) Re #83: add UTF-8 encoding to query results.