Opened 13 years ago
Closed 13 years ago
#8422 closed Bug (worksforme)
Anchor name is uri escaped
Reported by: | usami | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
The anchor name is uri escaped when making it with non-alphabetical characters.
- create document with anchor in non-alphabetical characters.
- save the document.
- edit the document and open anchor properties.
- anchor name is uri escaped.
Attachments (1)
Change History (4)
Changed 13 years ago by
Attachment: | escaped.png added |
---|
comment:1 Changed 13 years ago by
Status: | new → pending |
---|
comment:2 Changed 13 years ago by
The response of the request
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.1//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <body> <p> <a name="%E3%81%82%E3%82%93%E3%81%8B%E3%83%BC"></a> </p> </body> </html>
is this what you asked for?
Also I checked the HTML of the anchor by Firebug html tab.
<a name="あんかー" data-cke-saved-name="%E3%81%82%E3%82%93%E3%81%8B%E3%83%BC"></a>
comment:3 Changed 13 years ago by
Resolution: | → worksforme |
---|---|
Status: | pending → closed |
If this is what you get in your response than this is what comes from your server.
<a name="%E3%81%82%E3%82%93%E3%81%8B%E3%83%BC"></a>
This is not CKEditor fault. Please try to look for the cause on your side.
You could start with seeing what gets written into DB or what how does your request look like. Perhaps you are not decoding your data?
Could you check and give me feedback what do you receive (net tab in Firebug) when you load back the document. It looks more like an encoding problem on your side.