we have added the following code to fu.cfc (line 226) in order to escape german special characters in Friendly URLs cause they tend to cause trouble. (not xhtml either)
--- <!--- replace Umlauts in titles, deutsche Umlaute ersetzen ---> <cfset newAlias = replace(newAlias,'ä','ae',"all")> <cfset newAlias = replace(newAlias,'ö','oe',"all")> <cfset newAlias = replace(newAlias,'ü','ue',"all")> <cfset newAlias = replace(newAlias,'Ä','Ae',"all")> <cfset newAlias = replace(newAlias,'Ö','Oe',"all")> <cfset newAlias = replace(newAlias,'Ü','Ue',"all")> <cfset newAlias = replace(newAlias,'ß','ss',"all")> --- now i notice, that this would be necessary for french and other characters as well. Wouldn't it be best to at least prevent high bit chars from getting built into the FU ? or maybe replace them like above ? regards Jens Seipenbusch --- You are currently subscribed to farcry-dev as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
