My friendly url does not work (page is not found) if the user has a comma or any symbol in their name.
More details in PM
I think I resolved by revising my replace code from
str_replace(' ', '-', trim
to
str_replace(' ', '-',',','&', trim
Is this logical and should work whenever a space, comma or ampersand exists?