Resolved bugs

Release date:Wednesday, March 24, 2010
C1 Version:Composite C1 1.2 SP4 Patch 4 (1.2.3735.19620)...
DescriptionThe update Composite C1 1.2 SP4 Patch 3 broke "Friendly URL" functionality. When trying to access a C1 site using a Friendly URL, FileNotFoundHandler.ashx throws an exception.
Known work around:Install the latest patch or edit FileNotFoundHandler.ashx (line 25) and change this block:

                UrlString publicPageUrl = PageUrlHelper.BuildUrl(UrlType.Public, urlOptions);

                context.Response.Redirect(publicPageUrl.ToString());

to this:

                using (new DataScope(DataScopeIdentifier.Public, urlOptions.Locale))
                {
                    UrlString publicPageUrl = PageUrlHelper.BuildUrl(UrlType.Public, urlOptions);
                    context.Response.Redirect(publicPageUrl.ToString());
                }