HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Unicode in Name of Product Fails
This discussion is related to the MarketPlace addon.

Unicode in name, such as "½ year access", fails.
0
Comments
Should show: http://example.com/store/item/½-year-access
Shows: http://example.com/store/item/c2bd-year-access-year-access
The plugin should convert the name to % escapes for the right URL.
Problem also shows up in the dashboard, making it impossible to delete the item.
Going in manually as http://example.com/settings/marketplace/½-year-access/delete works.
hmm I use
Gdn_Format::Url
grep is your friend.
as you can reference it shows that the query is working.
The problem is I have double formatted. You can replace in views/listings.php and views/store.php
Gdn_Format::Url($Product->Slug)
with$Product->Slug
I will put the change in the next release.
grep is your friend.
Great! Thanks.