Unicode in name, such as "½ year access", fails.
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
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
Gdn_Format::Url($Product->Slug)
$Product->Slug
I will put the change in the next release.
Great! Thanks.
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.