Ticket #436 (closed defect: fixed)
permalinks with commas
| Reported by: | FND | Owned by: | MartinBudden |
|---|---|---|---|
| Priority: | major | Milestone: | 2.3.1 |
| Component: | core | Version: | |
| Severity: | medium | Keywords: | |
| Cc: |
Description
As reported here by Andrew, there is a bug relating to tiddlers with commas in their name:
A tiddler with a name like "Test,Name" will get a permalink Test%2CName - when that link is opened, TiddlyWiki does not resolve %2C into a comma, but instead looks for a tiddler with the name "Test%2CName".
This is because config.commands.permalink.handler() uses encodeURIComponent(), while getParameters() uses just decodeURI() (without the Component).
The fix is to ensure consistency in the use of encodeURI/decodeURI.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

