I found this when trying to understand some of the patterns used in the wiki script. The new field separator consists of 4 infrequently occuring characters. It does not seem to cause any problems though it probably will for someone.
The following 3 patterns need 'adjusting' (unless I've got this hopelessly wrong!)
$InterLinkPattern = "((?:$InterSitePattern:[^\\]\\s\"<>$FS]+)$QDelim)"; $UrlPattern = "((?:(?:$UrlProtocols):[^\\]\\s\"<>$FS]+)$QDelim)"; $UploadPattern = "upload:([^\\]\\s\"<>$FS]+)$QDelim";--BrianHunter
Proposed fix: Replace [...$FS] by (?:[...]|$FS). --MichaelBuschbeck
This won't work, the character classes here are negated. -- MarkusLude